1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 14:57:44 +00:00
This commit is contained in:
Alice Ogeda 2023-02-04 22:59:03 -03:00
parent a093ae9864
commit 3ab3aa3c3b

View file

@ -1,6 +1,6 @@
cmake_minimum_required( VERSION 3.0.2 )
cmake_policy(SET CMP0015 NEW)
project(Tool_WikiParse)
cmake_policy( SET CMP0015 NEW )
project( Tool_WikiParse )
file(GLOB SERVER_PUBLIC_INCLUDE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/*")
file(GLOB SERVER_SOURCE_FILES "${CMAKE_CURRENT_SOURCE_DIR}*.c*")
@ -10,5 +10,5 @@ add_executable( wiki_parse ${SERVER_PUBLIC_INCLUDE_FILES} ${SERVER_SOURCE_FILES}
if (UNIX)
target_link_libraries( wiki_parse common xivdat pthread mysql dl z stdc++fs )
else()
target_link_libraries( wiki_parse common xivdat mysql zlib)
target_link_libraries( wiki_parse common xivdat mysql zlib )
endif()