You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
280 B
9 lines
280 B
6 years ago
|
enable_language(C)
|
||
|
|
||
|
add_library(ext_cuda IMPORTED STATIC)
|
||
|
set_property(TARGET ext_cuda PROPERTY IMPORTED_LOCATION "/does_not_exist")
|
||
|
set_property(TARGET ext_cuda PROPERTY IMPORTED_LINK_INTERFACE_LANGUAGES "CUDA")
|
||
|
|
||
|
add_executable(main empty.c)
|
||
|
target_link_libraries(main ext_cuda)
|