2014-03-28 11:42:32 -04:00
|
|
|
|
|
|
|
cmake_minimum_required (VERSION 2.6)
|
|
|
|
project (MCServer)
|
|
|
|
|
|
|
|
include_directories ("${PROJECT_SOURCE_DIR}/../../")
|
|
|
|
|
2014-07-18 03:34:21 -04:00
|
|
|
SET (SRCS
|
|
|
|
AlchemistVillagePrefabs.cpp
|
|
|
|
JapaneseVillagePrefabs.cpp
|
|
|
|
NetherFortPrefabs.cpp
|
|
|
|
PlainsVillagePrefabs.cpp
|
|
|
|
RainbowRoadPrefabs.cpp
|
|
|
|
SandFlatRoofVillagePrefabs.cpp
|
|
|
|
SandVillagePrefabs.cpp
|
|
|
|
TestRailsPrefabs.cpp
|
|
|
|
UnderwaterBasePrefabs.cpp)
|
2014-03-28 11:42:32 -04:00
|
|
|
|
2014-07-18 03:34:21 -04:00
|
|
|
SET (HDRS
|
|
|
|
AlchemistVillagePrefabs.h
|
|
|
|
JapaneseVillagePrefabs.h
|
|
|
|
NetherFortPrefabs.h
|
|
|
|
PlainsVillagePrefabs.h
|
|
|
|
RainbowRoadPrefabs.h
|
|
|
|
SandFlatRoofVillagePrefabs.h
|
|
|
|
SandVillagePrefabs.h
|
|
|
|
TestRailsPrefabs.h
|
|
|
|
UnderwaterBasePrefabs.h)
|
|
|
|
|
2014-07-18 16:26:43 -04:00
|
|
|
if(NOT MSVC)
|
|
|
|
add_library(Generating_Prefabs ${SRCS} ${HDRS})
|
2014-03-28 11:42:32 -04:00
|
|
|
|
2014-07-18 16:26:43 -04:00
|
|
|
target_link_libraries(Generating_Prefabs OSSupport iniFile Blocks)
|
|
|
|
endif()
|