metaforce/hecl/driver/CMakeLists.txt

31 lines
612 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
list(APPEND DATA_SPEC_LIBS
RetroDataSpec
DNAMP3
2015-08-15 04:12:57 +00:00
DNAMP2
DNAMP1
DNACommon)
2015-07-22 19:14:50 +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}
HECLDatabase HECLBlender HECLCommon AthenaCore NOD
2015-09-02 18:52:04 +00:00
LogVisor AthenaLibYaml ${PNG_LIB} squish blowfish ${ZLIB_LIBRARIES} ${LZO_LIB} ${PLAT_LIBS})