mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
83 lines
2.1 KiB
CMake
83 lines
2.1 KiB
CMake
add_executable(conformance_test_headers
|
|
test_headers.c
|
|
)
|
|
|
|
add_executable(conformance_test_cl_h
|
|
test_cl.h.c
|
|
)
|
|
|
|
add_executable(conformance_test_cl_platform_h
|
|
test_cl_platform.h.c
|
|
)
|
|
|
|
add_executable(conformance_test_cl_gl_h
|
|
test_cl_gl.h.c
|
|
)
|
|
|
|
add_executable(conformance_test_opencl_h
|
|
test_opencl.h.c
|
|
)
|
|
|
|
add_executable(conformance_test_cl_h_c99
|
|
test_cl.h.c
|
|
)
|
|
|
|
add_executable(conformance_test_cl_platform_h_c99
|
|
test_cl_platform.h.c
|
|
)
|
|
|
|
add_executable(conformance_test_cl_gl_h_c99
|
|
test_cl_gl.h.c
|
|
)
|
|
|
|
add_executable(conformance_test_opencl_h_c99
|
|
test_opencl.h.c
|
|
)
|
|
|
|
set_target_properties(conformance_test_cl_h_c99
|
|
conformance_test_cl_platform_h_c99
|
|
conformance_test_cl_gl_h_c99
|
|
conformance_test_opencl_h_c99
|
|
PROPERTIES COMPILE_FLAGS "-std=c99"
|
|
)
|
|
|
|
TARGET_LINK_LIBRARIES(conformance_test_headers
|
|
${CLConform_LIBRARIES})
|
|
|
|
TARGET_LINK_LIBRARIES(conformance_test_cl_h
|
|
${CLConform_LIBRARIES})
|
|
|
|
TARGET_LINK_LIBRARIES(conformance_test_cl_platform_h
|
|
${CLConform_LIBRARIES})
|
|
|
|
TARGET_LINK_LIBRARIES(conformance_test_cl_gl_h
|
|
${CLConform_LIBRARIES})
|
|
|
|
TARGET_LINK_LIBRARIES(conformance_test_opencl_h
|
|
${CLConform_LIBRARIES})
|
|
|
|
TARGET_LINK_LIBRARIES(conformance_test_cl_h_c99
|
|
${CLConform_LIBRARIES})
|
|
|
|
TARGET_LINK_LIBRARIES(conformance_test_cl_platform_h_c99
|
|
${CLConform_LIBRARIES})
|
|
|
|
TARGET_LINK_LIBRARIES(conformance_test_cl_gl_h_c99
|
|
${CLConform_LIBRARIES})
|
|
|
|
TARGET_LINK_LIBRARIES(conformance_test_opencl_h_c99
|
|
${CLConform_LIBRARIES})
|
|
|
|
add_dependencies(OpenCLCTS conformance_test_headers conformance_test_cl_h
|
|
conformance_test_cl_platform_h conformance_test_cl_gl_h
|
|
conformance_test_opencl_h conformance_test_cl_h_c99
|
|
conformance_test_cl_platform_h_c99 conformance_test_cl_gl_h_c99
|
|
conformance_test_opencl_h_c99)
|
|
install(TARGETS conformance_test_headers conformance_test_cl_h
|
|
conformance_test_cl_platform_h conformance_test_cl_gl_h
|
|
conformance_test_opencl_h conformance_test_cl_h_c99
|
|
conformance_test_cl_platform_h_c99 conformance_test_cl_gl_h_c99
|
|
conformance_test_opencl_h_c99
|
|
DESTINATION "${CLConf_OUT_DIR}"
|
|
COMPONENT OpenCLCTS)
|