summaryrefslogtreecommitdiffhomepage
path: root/Starserver/CMakeLists.txt
blob: 3142ce23513b32cae193c79f9cc2e0383e14781c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
project(Starserver)
add_executable(
	Starserver
	Main.cpp
	)
target_include_directories(
	Starserver
	PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}
	)
target_link_libraries(
	Starserver
	PRIVATE StarsEx
	)
install(TARGETS Starserver RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX})