2013-12-10 16:39:20 -05:00
|
|
|
|
|
|
|
cmake_minimum_required (VERSION 2.6)
|
|
|
|
project (MCServer)
|
|
|
|
|
|
|
|
include_directories ("${PROJECT_SOURCE_DIR}/../")
|
|
|
|
|
2013-12-10 18:22:34 -05:00
|
|
|
file(GLOB SOURCE
|
|
|
|
"*.cpp"
|
2014-04-25 12:56:15 -04:00
|
|
|
"*.h"
|
2013-12-10 18:22:34 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
add_library(Generating ${SOURCE})
|
2014-01-19 15:51:23 -05:00
|
|
|
|
2014-01-25 13:23:18 -05:00
|
|
|
target_link_libraries(Generating OSSupport iniFile Blocks)
|