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