24 lines
550 B
CMake
24 lines
550 B
CMake
add_library(module_datastructures STATIC
|
|
tuples.c tuples.h
|
|
canvas.c canvas.h
|
|
matrix.c matrix.h
|
|
ray.c ray.h
|
|
sphere.c sphere.h
|
|
lights.c lights.h
|
|
material.c material.h
|
|
world.c world.h
|
|
intersections.c intersections.h
|
|
camera.c camera.h)
|
|
|
|
target_include_directories(module_datastructures PUBLIC
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
module_utilities
|
|
CException
|
|
)
|
|
|
|
target_link_libraries(module_datastructures
|
|
module_utilities
|
|
CException
|
|
m
|
|
)
|