Files
triton/tests/unit/CMakeLists.txt
2019-09-10 15:54:16 -04:00

7 lines
233 B
CMake

foreach(PROG dot reduce)
set(TARGET unit_${PROG})
add_executable(${TARGET} ${PROG}.cc)
set_target_properties(${TARGET} PROPERTIES OUTPUT_NAME ${TARGET})
target_link_libraries(${TARGET} triton dl)
endforeach(PROG)