Files
eqemu-server/shared_memory/CMakeLists.txt
T
brainiac 11a8e46ee8
Build / Linux (push) Has been cancelled
Build / Windows (push) Has been cancelled
CMake cleanup (#5082)
2026-05-17 15:05:46 -07:00

20 lines
441 B
CMake

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 common)
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
set_property(TARGET shared_memory PROPERTY FOLDER executables/servers)