diff options
author | archshift <admin@archshift.com> | 2014-07-18 09:20:38 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-07-19 02:41:43 +0200 |
commit | 06bef093bf3a035e03bf22808e82f8d82638dbfc (patch) | |
tree | 25c32a9edc65ed237d32c1e82e43f1da35c651e1 /src | |
parent | BlockEntities/CMakeLists.txt: Replaced glob with list of files (diff) | |
download | cuberite-06bef093bf3a035e03bf22808e82f8d82638dbfc.tar cuberite-06bef093bf3a035e03bf22808e82f8d82638dbfc.tar.gz cuberite-06bef093bf3a035e03bf22808e82f8d82638dbfc.tar.bz2 cuberite-06bef093bf3a035e03bf22808e82f8d82638dbfc.tar.lz cuberite-06bef093bf3a035e03bf22808e82f8d82638dbfc.tar.xz cuberite-06bef093bf3a035e03bf22808e82f8d82638dbfc.tar.zst cuberite-06bef093bf3a035e03bf22808e82f8d82638dbfc.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/Generating/CMakeLists.txt | 59 |
1 files changed, 54 insertions, 5 deletions
diff --git a/src/Generating/CMakeLists.txt b/src/Generating/CMakeLists.txt index 3dacb5066..b3960914c 100644 --- a/src/Generating/CMakeLists.txt +++ b/src/Generating/CMakeLists.txt @@ -4,11 +4,60 @@ project (MCServer) include_directories ("${PROJECT_SOURCE_DIR}/../") -file(GLOB SOURCE - "*.cpp" - "*.h" -) +SET (SRCS + BioGen.cpp + Caves.cpp + ChunkDesc.cpp + ChunkGenerator.cpp + CompoGen.cpp + ComposableGenerator.cpp + DistortedHeightmap.cpp + EndGen.cpp + FinishGen.cpp + GridStructGen.cpp + HeiGen.cpp + MineShafts.cpp + NetherFortGen.cpp + Noise3DGenerator.cpp + POCPieceGenerator.cpp + PieceGenerator.cpp + Prefab.cpp + PrefabPiecePool.cpp + RainbowRoadsGen.cpp + Ravines.cpp + StructGen.cpp + TestRailsGen.cpp + Trees.cpp + UnderwaterBaseGen.cpp + VillageGen.cpp) -add_library(Generating ${SOURCE}) +SET (HDRS + BioGen.h + Caves.h + ChunkDesc.h + ChunkGenerator.h + CompoGen.h + ComposableGenerator.h + DistortedHeightmap.h + EndGen.h + FinishGen.h + GridStructGen.h + HeiGen.h + MineShafts.h + NetherFortGen.h + Noise3DGenerator.h + POCPieceGenerator.h + PieceGenerator.h + Prefab.h + PrefabPiecePool.h + RainbowRoadsGen.h + Ravines.h + StructGen.h + TestRailsGen.h + Trees.h + UnderwaterBaseGen.h + VillageGen.h) + +add_library(Generating ${SRCS} ${HDRS}) target_link_libraries(Generating OSSupport iniFile Blocks) |