2015-07-07 04:45:29 +00:00
|
|
|
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
|
2015-07-25 23:01:02 +00:00
|
|
|
../DataSpecRegistry.hpp
|
2015-07-07 04:45:29 +00:00
|
|
|
)
|
2015-07-10 05:28:33 +00:00
|
|
|
|
2015-08-31 03:36:24 +00:00
|
|
|
if(NOT WIN32)
|
|
|
|
list(APPEND PLAT_LIBS pthread)
|
|
|
|
endif()
|
|
|
|
|
2016-01-09 02:19:26 +00:00
|
|
|
if(APPLE)
|
|
|
|
find_library(CF_LIBRARY CoreFoundation)
|
|
|
|
list(APPEND PLAT_LIBS ${CF_LIBRARY})
|
|
|
|
endif()
|
|
|
|
|
2015-07-10 05:28:33 +00:00
|
|
|
target_link_libraries(hecl
|
2015-08-08 23:33:55 +00:00
|
|
|
${DATA_SPEC_LIBS}
|
2016-03-04 23:02:44 +00:00
|
|
|
hecl-database hecl-backend hecl-frontend hecl-blender hecl-common athena-core nod
|
2016-04-07 03:38:37 +00:00
|
|
|
logvisor athena-libyaml ${PNG_LIB} squish xxhash zeus boo
|
|
|
|
${ZLIB_LIBRARIES} ${LZO_LIB} ${PLAT_LIBS} ${BOO_SYS_LIBS})
|