5c24331d20
SWDEV-102733 - Bring CMakeLists.txt in sync with open source - Remove extra empty lines - Add new lines at the end of files Affected files ... ... //depot/stg/opencl/drivers/opencl/CMakeLists.txt#17 edit ... //depot/stg/opencl/drivers/opencl/tools/clinfo/CMakeLists.txt#4 edit
14 lines
288 B
CMake
14 lines
288 B
CMake
set(CMAKE_CXX_FLAGS "-std=c++11")
|
|
|
|
set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
|
|
|
|
include_directories(${OPENCL_INCLUDE_DIRS})
|
|
|
|
add_definitions(-DHAVE_CL2_HPP)
|
|
|
|
add_executable(clinfo clinfo.cpp)
|
|
|
|
target_link_libraries(clinfo OpenCL)
|
|
|
|
install(TARGETS clinfo DESTINATION bin)
|