boo/test/CMakeLists.txt

11 lines
293 B
CMake
Raw Normal View History

2015-11-02 20:19:41 -08:00
add_executable(booTest WIN32 main.cpp)
target_link_libraries(booTest boo)
2018-10-06 19:49:22 -07:00
if (COMMAND add_nro_target)
set_target_properties(booTest PROPERTIES SUFFIX ".elf")
add_nro_target(booTest booTest "Antidote/Jackoalan" "1.0.0")
endif()
2018-05-06 16:07:12 -07:00
if(COMMAND add_sanitizers)
add_sanitizers(booTest)
endif()