19ca123460
clinfo should rely on OpenCL interface, headere file and library only Change-Id: I8e09aa73b55f1a28c2e4403f52740803d0338c12
11 líneas
490 B
CMake
11 líneas
490 B
CMake
add_executable(clinfo clinfo.cpp)
|
|
|
|
target_compile_definitions(clinfo PRIVATE CL_TARGET_OPENCL_VERSION=220 HAVE_CL2_HPP)
|
|
|
|
target_include_directories(clinfo PRIVATE "../../khronos/headers/opencl2.2/CL" "../../khronos/headers/opencl2.2/CL/.." "../../khronos/headers/opencl2.2/CL/../.." "../../khronos/headers/opencl2.2/CL/../../.." "../../khronos/headers/opencl2.2/CL/../../../..")
|
|
|
|
target_link_libraries(clinfo OpenCL)
|
|
|
|
INSTALL(TARGETS clinfo
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|