diff options
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" |