mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-21 09:11:20 +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()
|