mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Also build as C++11 (required for unique_ptr) Signed-off-by: Kevin Petit <kevin.petit@arm.com>
21 lines
666 B
CMake
21 lines
666 B
CMake
set(MODULE_NAME PRINTF)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
set(${MODULE_NAME}_SOURCES
|
|
test_printf.c
|
|
util_printf.c
|
|
../../test_common/harness/errorHelpers.c
|
|
../../test_common/harness/threadTesting.c
|
|
../../test_common/harness/kernelHelpers.c
|
|
../../test_common/harness/typeWrappers.cpp
|
|
../../test_common/harness/conversions.c
|
|
../../test_common/harness/mt19937.c
|
|
../../test_common/harness/msvc9.c
|
|
#../../test_common/harness/imageHelpers.cpp
|
|
../../test_common/harness/parseParameters.cpp
|
|
../../test_common/harness/kernelHelpers.c
|
|
)
|
|
|
|
include(../CMakeCommon.txt)
|