Files
OpenCL-CTS/test_conformance/commonfns/CMakeLists.txt
Kévin Petit fa4b278432 Build the harness as a static library (#430)
This reduces by a factor of roughly two the number of files to build.

Fixes #193.

Signed-off-by: Kevin Petit <kevin.petit@arm.com>
2019-08-07 17:18:10 +01:00

26 lines
410 B
CMake

set(MODULE_NAME COMMONFNS)
set(${MODULE_NAME}_SOURCES
main.c
test_clamp.c
test_degrees.c
test_max.c
test_maxf.c
test_min.c
test_minf.c
test_mix.c
test_radians.c
test_step.c
test_stepf.c
test_smoothstep.c
test_smoothstepf.c
test_sign.c
test_fmax.c
test_fmin.c
test_fmaxf.c
test_fminf.c
test_binary_fn.c
)
include(../CMakeCommon.txt)