diff options
| author | 3gg <3gg@shellblade.net> | 2025-12-27 12:00:21 -0800 |
|---|---|---|
| committer | 3gg <3gg@shellblade.net> | 2025-12-27 12:00:21 -0800 |
| commit | 07fb91b9571fc0add797cbcd0adcc8711401a2be (patch) | |
| tree | 2f7c2e7536e92c1fa86c902939ac47bf931da877 /CMakeLists.txt | |
| parent | 403730174aeaadcf7a8aad842bc5319050411ef9 (diff) | |
Enough stuff to draw a cube
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 537c00d..ec4d307 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -23,10 +23,10 @@ target_compile_options(swgfx PRIVATE -Wall -Wextra) | |||
| 23 | # Tests. | 23 | # Tests. |
| 24 | 24 | ||
| 25 | add_executable(swgfx-test | 25 | add_executable(swgfx-test |
| 26 | test/test.c) | 26 | test/test.c |
| 27 | test/test.h) | ||
| 27 | 28 | ||
| 28 | target_link_libraries(swgfx-test | 29 | target_link_libraries(swgfx-test |
| 29 | swgfx) | 30 | swgfx) |
| 30 | 31 | ||
| 31 | target_compile_options(swgfx-test PRIVATE -Wall -Wextra) | 32 | target_compile_options(swgfx-test PRIVATE -DUNIT_TEST -DNDEBUG -Wall -Wextra) |
| 32 | |||
