blob: cf506618ac77739a37d5c7d78fc2a50a248c1ddb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
cmake_minimum_required(VERSION 3.5)
project(math)
# Library.
add_library(math INTERFACE)
target_include_directories(math INTERFACE
include)
target_link_libraries(math INTERFACE
-lm)
# Test.
add_executable(math_test
test/mat4_test.c
test/quat_test.c
test/vec3_test.c)
target_link_libraries(math_test
math)
target_compile_options(math_test PRIVATE -DUNIT_TEST -DNDEBUG -Wall -Wextra)
|