mirror of https://github.com/AxioDL/metaforce.git
10 lines
309 B
CMake
10 lines
309 B
CMake
add_executable(heclTest WIN32 main.cpp)
|
|
target_link_libraries(heclTest
|
|
${HECL_APPLICATION_REPS_TARGETS_LIST}
|
|
hecl-full hecl-blender-addon
|
|
athena-core athena-libyaml xxhash logvisor boo
|
|
${ZLIB_LIBRARIES} ${LZO_LIB} ${BOO_SYS_LIBS})
|
|
if(COMMAND add_sanitizers)
|
|
add_sanitizers(heclTest)
|
|
endif()
|