d53c19cfa5
Don't use hardcoded install destinations. CMake will decide where things should be installed based on platform. Change-Id: Ifcf956181d3efb32d4ce6191a89c1ea225d0e8cc
7 lines
150 B
CMake
7 lines
150 B
CMake
add_executable(clinfo clinfo.cpp)
|
|
|
|
target_link_libraries(clinfo OpenCL amdocl)
|
|
|
|
INSTALL(TARGETS clinfo
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|