-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatmakefile
More file actions
55 lines (48 loc) · 880 Bytes
/
Matmakefile
File metadata and controls
55 lines (48 loc) · 880 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Matmake file
# https://github.com/laserskold/matmake2
all
in =
@vec2_test
@transform2_test
@quaternion_test
@matrix_test
#@modules_test
flags =
-Wextra
-Wall
-Wno-unused-parameter
-Wno-sign-compare
-Wsuggest-override
-Wpedantic
-fsanitize=address
-fsanitize-address-use-after-scope
config =
debug
c++17
includes =
include
vec2_test
out = vec2_test
src = test/vec2_test.cpp
command = [test]
transform2_test
out = transform2_test
src = test/transform2_test.cpp
command = [test]
quaternion_test
out = quaternion_test
src = test/quaternion_test.cpp
command = [test]
matrix_test
out = matrix_test
src = test/matrix_test.cpp
command = [test]
modules_test
out = modules_test
src =
test/modules_test.cpp
modules/*.cppm
command = [test]
config =
c++2a
modules