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