metaforce/hecl/driver/CMakeLists.txt

24 lines
536 B
CMake
Raw Normal View History

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-10 05:28:33 +00:00
2015-08-31 03:36:24 +00:00
if(NOT WIN32)
list(APPEND PLAT_LIBS pthread)
endif()
2015-07-10 05:28:33 +00:00
target_link_libraries(hecl
${DATA_SPEC_LIBS}
2015-10-14 23:06:47 +00:00
HECLDatabase HECLBackend HECLFrontend HECLBlender HECLCommon AthenaCore NOD
2015-09-22 01:41:38 +00:00
LogVisor AthenaLibYaml ${PNG_LIB} squish xxhash ${ZLIB_LIBRARIES} ${LZO_LIB} ${PLAT_LIBS})