summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/CMakeLists.txt
blob: 497cd0ba350c71a5d70ed94db4f0f4eeb312dbf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

cmake_minimum_required (VERSION 2.6)
project (MCServer)

include_directories ("${PROJECT_SOURCE_DIR}/../")
file(GLOB SOURCE
    "*.cpp"
)

add_library(OSSupport ${SOURCE})

if(UNIX)
	target_link_libraries(OSSupport pthread)
endif()