diff options
| author | Kahrl <kahrl@gmx.net> | 2013-08-11 04:09:45 +0200 |
|---|---|---|
| committer | Kahrl <kahrl@gmx.net> | 2013-08-14 21:03:33 +0200 |
| commit | 4e1f50035e860a00636ca5d804c267119df99601 (patch) | |
| tree | c6cab522305ef2a5b9cfdb3685340d57590f1ff1 /src/CMakeLists.txt | |
| parent | 6228d634fb31d1ce925d1fdc2dac022629a007ef (diff) | |
| download | minetest-4e1f50035e860a00636ca5d804c267119df99601.tar.xz | |
Omnicleanup: header cleanup, add ModApiUtil shared between game and mainmenu
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a1fcdd965..18cdaa725 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -267,12 +267,11 @@ set(common_SRCS base64.cpp ban.cpp biome.cpp - clientserver.cpp staticobject.cpp serverlist.cpp pathfinder.cpp convert_json.cpp - ${SCRIPT_SRCS} + ${common_SCRIPT_SRCS} ${UTIL_SRCS} ) @@ -329,9 +328,9 @@ set(minetest_SRCS game.cpp main.cpp guiEngine.cpp - guiLuaApi.cpp guiFileSelectMenu.cpp convert_json.cpp + ${minetest_SCRIPT_SRCS} ) if(USE_FREETYPE) @@ -341,11 +340,14 @@ if(USE_FREETYPE) ) endif(USE_FREETYPE) +list(SORT minetest_SRCS) + # Server sources set(minetestserver_SRCS ${common_SRCS} main.cpp ) +list(SORT minetestserver_SRCS) include_directories( ${PROJECT_BINARY_DIR} |
