2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-02 08:55:35 +00:00
metaforce/hecl/driver/CMakeLists.txt
2017-12-05 17:22:31 -10:00

32 lines
667 B
CMake

if(NOT WINDOWS_STORE)
add_executable(hecl main.cpp
ToolBase.hpp
ToolPackage.hpp
ToolExtract.hpp
ToolInit.hpp
ToolHelp.hpp
ToolGroup.hpp
ToolCook.hpp
ToolClean.hpp
ToolAdd.hpp
ToolRemove.hpp
ToolSpec.hpp
../DataSpecRegistry.hpp
)
if(NOT WIN32)
list(APPEND PLAT_LIBS pthread)
endif()
if(APPLE)
find_library(CF_LIBRARY CoreFoundation)
list(APPEND PLAT_LIBS ${CF_LIBRARY})
endif()
target_link_libraries(hecl
${DATA_SPEC_LIBS}
hecl-common hecl-blender-addon athena-core nod
logvisor athena-libyaml ${PNG_LIB} squish xxhash zeus boo
${ZLIB_LIBRARIES} ${LZO_LIB} ${PLAT_LIBS} ${BOO_SYS_LIBS})
endif()