mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-02 00:47:45 +00:00
15 lines
491 B
CMake
15 lines
491 B
CMake
cmake_minimum_required( VERSION 3.0.2 )
|
|
cmake_policy(SET CMP0015 NEW)
|
|
project(Tool_ActionParse)
|
|
|
|
file(GLOB SERVER_PUBLIC_INCLUDE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/*")
|
|
file(GLOB SERVER_SOURCE_FILES "${CMAKE_CURRENT_SOURCE_DIR}*.c*")
|
|
|
|
add_executable( action_parse ${SERVER_PUBLIC_INCLUDE_FILES} ${SERVER_SOURCE_FILES})
|
|
|
|
if (UNIX)
|
|
target_link_libraries( action_parse common xivdat pthread mysql dl z stdc++fs )
|
|
else()
|
|
target_link_libraries( action_parse common xivdat mysql zlib)
|
|
endif()
|
|
|