diff options
author | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-19 01:06:24 +0100 |
---|---|---|
committer | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-19 01:06:24 +0100 |
commit | 3585f93fc9f437caf47984e61fefe6c7c8563c62 (patch) | |
tree | b1ca29a50e6e6ca7c54c0498dc85e20cdf02b35d /src/Blocks | |
parent | linked in lua (diff) | |
download | cuberite-3585f93fc9f437caf47984e61fefe6c7c8563c62.tar cuberite-3585f93fc9f437caf47984e61fefe6c7c8563c62.tar.gz cuberite-3585f93fc9f437caf47984e61fefe6c7c8563c62.tar.bz2 cuberite-3585f93fc9f437caf47984e61fefe6c7c8563c62.tar.lz cuberite-3585f93fc9f437caf47984e61fefe6c7c8563c62.tar.xz cuberite-3585f93fc9f437caf47984e61fefe6c7c8563c62.tar.zst cuberite-3585f93fc9f437caf47984e61fefe6c7c8563c62.zip |
Diffstat (limited to 'src/Blocks')
-rw-r--r-- | src/Blocks/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Blocks/CMakeLists.txt b/src/Blocks/CMakeLists.txt index 6fededb65..082ff41ac 100644 --- a/src/Blocks/CMakeLists.txt +++ b/src/Blocks/CMakeLists.txt @@ -4,4 +4,8 @@ project (MCServer) include_directories ("${PROJECT_SOURCE_DIR}/../") -add_library(Blocks BlockHandler) +file(GLOB SOURCE + "*.cpp" +) + +add_library(Blocks ${SOURCE}) |