mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
21 lines
399 B
CMake
21 lines
399 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
set(eqlaunch_sources
|
|
eqlaunch.cpp
|
|
worldserver.cpp
|
|
zone_launch.cpp
|
|
)
|
|
|
|
set(eqlaunch_headers
|
|
worldserver.h
|
|
zone_launch.h
|
|
)
|
|
|
|
add_executable(eqlaunch ${eqlaunch_sources} ${eqlaunch_headers})
|
|
|
|
install(TARGETS eqlaunch RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|
|
|
|
target_link_libraries(eqlaunch common)
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
|