diff options
author | crupest <crupest@outlook.com> | 2021-05-10 17:09:15 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-05-10 17:09:15 +0800 |
commit | ae5042599688af2d8b462e49e3cd103b6ec92fe9 (patch) | |
tree | fb910abe7afb65621e52f2c23ce151cb1ff45baa /src/ui | |
parent | 34739cd02557bdecb0c3f1b35ffc5816eb3133ac (diff) | |
download | cru-ae5042599688af2d8b462e49e3cd103b6ec92fe9.tar.gz cru-ae5042599688af2d8b462e49e3cd103b6ec92fe9.tar.bz2 cru-ae5042599688af2d8b462e49e3cd103b6ec92fe9.zip |
...
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/ui/ThemeManager.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/CMakeLists.txt b/src/ui/CMakeLists.txt index 7d2792d6..c8476acf 100644 --- a/src/ui/CMakeLists.txt +++ b/src/ui/CMakeLists.txt @@ -5,6 +5,7 @@ add_library(cru_ui STATIC host/RoutedEventDispatch.hpp Helper.cpp + ThemeManager.cpp UiManager.cpp components/Component.cpp components/Menu.cpp @@ -45,6 +46,7 @@ add_library(cru_ui STATIC target_sources(cru_ui PUBLIC ${CRU_UI_INCLUDE_DIR}/Base.hpp ${CRU_UI_INCLUDE_DIR}/DebugFlags.hpp + ${CRU_UI_INCLUDE_DIR}/ThemeManager.hpp ${CRU_UI_INCLUDE_DIR}/UiManager.hpp ${CRU_UI_INCLUDE_DIR}/components/Component.hpp ${CRU_UI_INCLUDE_DIR}/components/Menu.hpp diff --git a/src/ui/ThemeManager.cpp b/src/ui/ThemeManager.cpp new file mode 100644 index 00000000..993edc34 --- /dev/null +++ b/src/ui/ThemeManager.cpp @@ -0,0 +1 @@ +#include "cru/ui/ThemeManager.hpp" |