summaryrefslogtreecommitdiff
path: root/source.list
diff options
context:
space:
mode:
Diffstat (limited to 'source.list')
-rw-r--r--source.list38
1 files changed, 20 insertions, 18 deletions
diff --git a/source.list b/source.list
index 03186c07d..3dafee29f 100644
--- a/source.list
+++ b/source.list
@@ -76,23 +76,6 @@ strings.cpp
subsidy.cpp
texteff.cpp
tgp.cpp
-#if HAVE_THREAD
- #if WIN32
- thread_win32.cpp
- #else
- #if OS2
- thread_os2.cpp
- #else
- #if MORPHOS
- thread_morphos.cpp
- #else
- thread_pthread.cpp
- #end
- #end
- #end
-#else
- thread_none.cpp
-#end
tile_map.cpp
#if WIN32
#else
@@ -304,7 +287,6 @@ terraform_gui.h
textbuf_gui.h
texteff.hpp
tgp.h
-thread.h
tile_cmd.h
tile_type.h
tilehighlight_func.h
@@ -940,3 +922,23 @@ sound/null_s.cpp
os/macosx/splash.cpp
#end
#end
+
+# Threading
+thread/thread.h
+#if HAVE_THREAD
+ #if WIN32
+ thread/thread_win32.cpp
+ #else
+ #if OS2
+ thread/thread_os2.cpp
+ #else
+ #if MORPHOS
+ thread/thread_morphos.cpp
+ #else
+ thread/thread_pthread.cpp
+ #end
+ #end
+ #end
+#else
+ thread/thread_none.cpp
+#end