diff options
author | 3gg <3gg@shellblade.net> | 2025-07-19 09:29:12 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2025-07-19 09:29:12 -0700 |
commit | d1370b955f9a86c82f92d7368237ed96318de330 (patch) | |
tree | fe59a07927e560da5dfe88c89c547ec3c3a47307 /CMakeLists.txt | |
parent | 10cd24c9e5da615064c782effafc7477bf074054 (diff) |
Allocate data from a stack allocator
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 42d2502..498adc8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -9,6 +9,7 @@ set(CMAKE_C_EXTENSIONS Off) | |||
9 | # isogfx | 9 | # isogfx |
10 | 10 | ||
11 | add_library(isogfx | 11 | add_library(isogfx |
12 | src/asset.c | ||
12 | src/isogfx.c) | 13 | src/isogfx.c) |
13 | 14 | ||
14 | target_include_directories(isogfx PUBLIC | 15 | target_include_directories(isogfx PUBLIC |
@@ -16,8 +17,7 @@ target_include_directories(isogfx PUBLIC | |||
16 | 17 | ||
17 | target_link_libraries(isogfx PUBLIC | 18 | target_link_libraries(isogfx PUBLIC |
18 | filesystem | 19 | filesystem |
19 | mem | 20 | memstack) |
20 | mempool) | ||
21 | 21 | ||
22 | target_compile_options(isogfx PRIVATE -Wall -Wextra -Wpedantic) | 22 | target_compile_options(isogfx PRIVATE -Wall -Wextra -Wpedantic) |
23 | 23 | ||