aboutsummaryrefslogtreecommitdiff
path: root/src/gui/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/CMakeLists.txt')
-rw-r--r--src/gui/CMakeLists.txt13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt
index 59ee94d..4c5039b 100644
--- a/src/gui/CMakeLists.txt
+++ b/src/gui/CMakeLists.txt
@@ -1,3 +1,10 @@
-add_library(gui "src/gui.c")
-target_include_directories(gui PUBLIC "inc")
-target_link_libraries(gui PUBLIC gfx player PRIVATE font unit building)
+add_library(gui
+ "src/bar.c"
+ "src/button.c"
+ "src/gui.c"
+ "src/label.c"
+ "src/progress_bar.c"
+ "src/rounded_rect.c"
+)
+target_include_directories(gui PUBLIC "inc" PRIVATE "privinc")
+target_link_libraries(gui PUBLIC camera gfx peripheral font)