diff options
| author | Perttu Ahola <celeron55@gmail.com> | 2011-01-28 01:38:16 +0200 |
|---|---|---|
| committer | Perttu Ahola <celeron55@gmail.com> | 2011-01-28 01:38:16 +0200 |
| commit | 64b59757322e29c331c0a75262baec4382673e6f (patch) | |
| tree | b1404f42db92b92202655bdd4f13a6c4c7fdd39d /src/CMakeLists.txt | |
| parent | bd100c5483eb77a27eeac4e476c81a1bf6afc710 (diff) | |
| download | dragonfireclient-64b59757322e29c331c0a75262baec4382673e6f.tar.xz | |
Now texture handling is fast. Also now players are saved on disk.
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 47 |
1 files changed, 15 insertions, 32 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7913f4964..d027c7cd9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -38,18 +38,12 @@ configure_file( "${PROJECT_BINARY_DIR}/cmake_config.h" ) -set(minetest_SRCS - guiMainMenu.cpp +set(common_SRCS + mineral.cpp porting.cpp - guiMessageMenu.cpp materials.cpp - guiTextInputMenu.cpp - guiInventoryMenu.cpp - irrlichtwrapper.cpp - guiPauseMenu.cpp defaultsettings.cpp mapnode.cpp - tile.cpp voxel.cpp mapblockobject.cpp inventory.cpp @@ -59,7 +53,6 @@ set(minetest_SRCS filesys.cpp connection.cpp environment.cpp - client.cpp server.cpp socket.cpp mapblock.cpp @@ -68,34 +61,24 @@ set(minetest_SRCS map.cpp player.cpp utility.cpp - main.cpp test.cpp ) +set(minetest_SRCS + ${common_SRCS} + guiMainMenu.cpp + guiMessageMenu.cpp + guiTextInputMenu.cpp + guiInventoryMenu.cpp + guiPauseMenu.cpp + irrlichtwrapper.cpp + client.cpp + main.cpp +) + set(minetestserver_SRCS - porting.cpp - materials.cpp - defaultsettings.cpp - mapnode.cpp - voxel.cpp - mapblockobject.cpp - inventory.cpp - debug.cpp - serialization.cpp - light.cpp - filesys.cpp - connection.cpp - environment.cpp - server.cpp - socket.cpp - mapblock.cpp - mapsector.cpp - heightmap.cpp - map.cpp - player.cpp - utility.cpp + ${common_SRCS} servermain.cpp - test.cpp ) include_directories( |
