mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-16 01:01:30 +00:00
21 lines
418 B
CMake
21 lines
418 B
CMake
CMAKE_MINIMUM_REQUIRED(VERSION 3.17.0)
|
|
|
|
SET(shared_memory_sources
|
|
items.cpp
|
|
main.cpp
|
|
spells.cpp
|
|
)
|
|
|
|
SET(shared_memory_headers
|
|
items.h
|
|
spells.h
|
|
)
|
|
|
|
ADD_EXECUTABLE(shared_memory ${shared_memory_sources} ${shared_memory_headers})
|
|
|
|
INSTALL(TARGETS shared_memory RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|
|
|
|
TARGET_LINK_LIBRARIES(shared_memory ${SERVER_LIBS})
|
|
|
|
SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
|