Files
triton/examples/cpp/CMakeLists.txt
2019-08-23 19:06:39 -07:00

7 lines
243 B
CMake

foreach(PROG dot)
add_executable(${PROG} ${PROG}.cc)
set_target_properties(${PROG} PROPERTIES OUTPUT_NAME ${PROG})
include_directories(/usr/local/cuda/include/)
target_link_libraries(${PROG} triton cublas)
endforeach(PROG)