mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
* gles: Fix compile warnings. For 32 and 64-bit Visual Studio and the Android Q NDK. * Fix formatting violations Co-authored-by: spauls <spauls@qti.qualcomm.com>
28 lines
716 B
CMake
28 lines
716 B
CMake
|
|
set(HARNESS_SOURCES
|
|
harness/typeWrappers.cpp
|
|
harness/mt19937.cpp
|
|
harness/conversions.cpp
|
|
harness/rounding_mode.cpp
|
|
harness/msvc9.c
|
|
harness/crc32.cpp
|
|
harness/errorHelpers.cpp
|
|
harness/featureHelpers.cpp
|
|
harness/genericThread.cpp
|
|
harness/imageHelpers.cpp
|
|
harness/kernelHelpers.cpp
|
|
harness/deviceInfo.cpp
|
|
harness/os_helpers.cpp
|
|
harness/parseParameters.cpp
|
|
harness/propertyHelpers.cpp
|
|
harness/testHarness.cpp
|
|
harness/ThreadPool.cpp
|
|
miniz/miniz.c
|
|
)
|
|
|
|
add_library(harness STATIC ${HARNESS_SOURCES})
|
|
|
|
if(MSVC)
|
|
# Don't warn about using the portable "strdup" function.
|
|
target_compile_definitions(harness PRIVATE _CRT_NONSTDC_NO_DEPRECATE)
|
|
endif() |