mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-15 00:01:21 +00:00
11 lines
241 B
CMake
11 lines
241 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
project(NiotsoServer)
|
|
|
|
if(WIN32)
|
|
else()
|
|
set(NIOTSOSERVER_SOURCES
|
|
Server.cpp
|
|
)
|
|
add_executable(niotsod-vanilla ${NIOTSOSERVER_SOURCES})
|
|
target_link_libraries(niotsod-vanilla)
|
|
endif()
|