diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-11 23:22:04 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-11 23:42:27 +0200 |
| commit | 6f74cbd20b1fe0ef9f2a55057e9ac066bec0b575 (patch) | |
| tree | bd6e709305fa93c216915ad73662517b74754489 /src/button/CMakeLists.txt | |
| parent | 46fec13fcbee1385db0927f1162f60e1f328d63c (diff) | |
| download | jancity-6f74cbd20b1fe0ef9f2a55057e9ac066bec0b575.tar.gz | |
Implement button component
Diffstat (limited to 'src/button/CMakeLists.txt')
| -rw-r--r-- | src/button/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/button/CMakeLists.txt b/src/button/CMakeLists.txt new file mode 100644 index 0000000..1e6e693 --- /dev/null +++ b/src/button/CMakeLists.txt @@ -0,0 +1,3 @@ +add_library(button "src/button.c") +target_include_directories(button PUBLIC "inc") +target_link_libraries(button PUBLIC gfx PRIVATE font) |
