diff options
| author | crupest <crupest@outlook.com> | 2021-08-12 21:44:32 +0800 |
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2021-08-12 21:44:32 +0800 |
| commit | 2e379441f69c4fd3049d186f76b25457e6250282 (patch) | |
| tree | 893771e5103ca9f3a34bb622251aaacb024cf1c2 /src/win/gui | |
| parent | d718b0f576aeae1fa853124caefc8b0078f1deed (diff) | |
| download | cru-2e379441f69c4fd3049d186f76b25457e6250282.tar.gz cru-2e379441f69c4fd3049d186f76b25457e6250282.tar.bz2 cru-2e379441f69c4fd3049d186f76b25457e6250282.zip | |
...
Diffstat (limited to 'src/win/gui')
| -rw-r--r-- | src/win/gui/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | src/win/gui/Resource.cpp | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/win/gui/CMakeLists.txt b/src/win/gui/CMakeLists.txt index 48bed00d..53dfe69b 100644 --- a/src/win/gui/CMakeLists.txt +++ b/src/win/gui/CMakeLists.txt @@ -8,6 +8,7 @@ add_library(cru_win_gui STATIC GodWindow.cpp InputMethod.cpp Keyboard.cpp + Resource.cpp TimerManager.cpp UiApplication.cpp Window.cpp diff --git a/src/win/gui/Resource.cpp b/src/win/gui/Resource.cpp new file mode 100644 index 00000000..dc4de173 --- /dev/null +++ b/src/win/gui/Resource.cpp @@ -0,0 +1,6 @@ +#include "cru/win/gui/Resource.hpp" +#include "cru/win/gui/Window.hpp" + +namespace cru::platform::gui::win { +String WinNativeResource::kPlatformId = u"Windows"; +} |
