Files
triton/tests/unit/CMakeLists.txt
2019-10-20 17:48:19 -04:00

7 lines
238 B
CMake

foreach(PROG dot copy 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)