mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-05 10:17:46 +00:00
16 lines
494 B
CMake
16 lines
494 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
cmake_policy(SET CMP0015 NEW)
|
|
project(Tool_pcb_reader2)
|
|
|
|
file(GLOB SERVER_PUBLIC_INCLUDE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/*")
|
|
file(GLOB SERVER_SOURCE_FILES "${CMAKE_CURRENT_SOURCE_DIR}*.c*")
|
|
|
|
add_executable(pcb_reader2 ${SERVER_PUBLIC_INCLUDE_FILES} ${SERVER_SOURCE_FILES})
|
|
|
|
if (UNIX)
|
|
target_link_libraries (pcb_reader2 common xivdat pthread mysqlclient dl z stdc++fs )
|
|
else()
|
|
target_link_libraries (pcb_reader2 common xivdat mysql zlib)
|
|
endif()
|
|
|
|
|