mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-06 13:33:52 +00:00
- Add static libraries to "libraries" folder - Add servers to "executables/servers" folder - Add tools to "executables/tools" folder - Add tests to "executables/tests" folder - Add contrib projects to "contrib" folder
18 lines
433 B
CMake
18 lines
433 B
CMake
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
set(import_sources
|
|
main.cpp
|
|
)
|
|
|
|
set(import_headers
|
|
)
|
|
|
|
add_executable(import_client_files ${import_sources} ${import_headers})
|
|
|
|
install(TARGETS import_client_files RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|
|
|
|
target_link_libraries(import_client_files common)
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
|
|
set_property(TARGET import_client_files PROPERTY FOLDER executables/tools)
|