mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-21 06:49:02 +00:00
20 lines
577 B
CMake
20 lines
577 B
CMake
add_executable(conformance_test_computeinfo
|
|
main.c
|
|
../../test_common/harness/errorHelpers.c
|
|
../../test_common/harness/msvc9.c
|
|
)
|
|
|
|
set_source_files_properties(
|
|
main.c
|
|
../../test_common/harness/errorHelpers.c
|
|
../../test_common/harness/msvc9.c
|
|
PROPERTIES LANGUAGE CXX)
|
|
|
|
TARGET_LINK_LIBRARIES(conformance_test_computeinfo
|
|
${CLConform_LIBRARIES})
|
|
|
|
add_dependencies(OpenCLCTS conformance_test_computeinfo)
|
|
install(TARGETS conformance_test_computeinfo
|
|
DESTINATION "${CLConf_OUT_DIR}"
|
|
COMPONENT OpenCLCTS)
|