blob: 2844f7fe5ec46fea0300c2787cc0a8929c0e1b15 (
plain) (
tree)
|
|
cmake_minimum_required (VERSION 2.6)
project (MCServer)
include_directories ("${PROJECT_SOURCE_DIR}/../")
file(GLOB SOURCE
"*.cpp"
"*.h"
)
add_library(WorldStorage ${SOURCE})
target_link_libraries(WorldStorage OSSupport)
|