Files
OpenCL-CTS/test_common/CMakeLists.txt
Kévin Petit 4ccc214abb Build a single library for the test harness (#646)
The common library stopped being useful when we got rid of the
last compatibility suite.

Signed-off-by: Kevin Petit <kevin.petit@arm.com>
2020-03-04 12:38:33 +00:00

24 lines
530 B
CMake

set(HARNESS_SOURCES
harness/threadTesting.cpp
harness/typeWrappers.cpp
harness/mt19937.cpp
harness/conversions.cpp
harness/rounding_mode.cpp
harness/msvc9.c
harness/crc32.c
harness/errorHelpers.cpp
harness/genericThread.cpp
harness/imageHelpers.cpp
harness/kernelHelpers.cpp
harness/deviceInfo.cpp
harness/os_helpers.cpp
harness/parseParameters.cpp
harness/testHarness.cpp
harness/ThreadPool.cpp
miniz/miniz.c
)
add_library(harness STATIC ${HARNESS_SOURCES})