Files
raytracer-c/test/module_datastructures/CMakeLists.txt

56 lines
1.6 KiB
CMake
Raw Normal View History

2020-07-31 22:55:20 -04:00
add_executable(module_datastructures_tuples
test_tuples.c)
target_link_libraries(module_datastructures_tuples
module_datastructures
2020-08-01 23:19:33 -04:00
Unity
m)
2020-07-31 22:55:20 -04:00
add_test(datastructures_tuples module_datastructures_tuples)
2020-08-01 23:19:33 -04:00
2020-08-03 07:23:30 -04:00
add_executable(module_datastructures_canvas
test_canvas.c)
target_link_libraries(module_datastructures_canvas
module_datastructures
Unity
m)
add_test(datastructures_canvas module_datastructures_canvas)
2020-08-05 23:47:16 -04:00
add_executable(module_datastructures_matrix
test_matrix.c)
target_link_libraries(module_datastructures_matrix
module_datastructures
Unity
m)
add_test(datastructures_matrix module_datastructures_matrix)
add_executable(module_datastructures_rays
test_rays.c)
target_link_libraries(module_datastructures_rays
module_datastructures
Unity
m)
add_test(datastructures_rays module_datastructures_rays)
add_executable(module_datastructures_sphere
test_sphere.c)
target_link_libraries(module_datastructures_sphere
module_datastructures
Unity
m)
add_test(datastructures_sphere module_datastructures_sphere)
add_executable(module_datastructures_lights
test_lights.c)
target_link_libraries(module_datastructures_lights
module_datastructures
Unity
m)
add_test(datastructures_lights module_datastructures_lights)
add_executable(module_datastructures_material
test_material.c)
target_link_libraries(module_datastructures_material
module_datastructures
Unity
m)
add_test(datastructures_material module_datastructures_material)