mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
21 lines
410 B
CMake
21 lines
410 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 common)
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
|