7 lines
244 B
CMake
7 lines
244 B
CMake
foreach(PROG dot)
|
|
add_executable(${PROG} ${PROG}.cpp)
|
|
set_target_properties(${PROG} PROPERTIES OUTPUT_NAME ${PROG})
|
|
include_directories(/usr/local/cuda/include/)
|
|
target_link_libraries(${PROG} triton cublas)
|
|
endforeach(PROG)
|