summaryrefslogtreecommitdiff
path: root/source.list
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-09-01 10:07:22 +0000
committerrubidium <rubidium@openttd.org>2009-09-01 10:07:22 +0000
commit07d2af338e237889ff453a3a774522b9b0021439 (patch)
tree373ccc2eecf1aa917f24008e4d25535413dc4eb2 /source.list
parent5a3b2f0d02ddb7fedbca29a3e5e68dec28c887af (diff)
downloadopenttd-07d2af338e237889ff453a3a774522b9b0021439.tar.xz
(svn r17339) -Codechange: move thread related files to their own directory (like done for video, music, sound, etc)
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