eqemu-server/shared_memory/CMakeLists.txt
2025-11-16 22:26:34 -08:00

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)