diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt index 4c4f526..9566cc3 100644 --- a/example/CMakeLists.txt +++ b/example/CMakeLists.txt @@ -25,11 +25,13 @@ find_package(Qt6 COMPONENTS Core Quick QuickControls2 Concurrent Network Multime set(SOURCES ChatController.cpp + AppInfo.cpp main.cpp ) set(HEADERS ChatController.h + AppInfo.h ) set(RESOURCES diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7fc0339..468a6a4 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -24,6 +24,7 @@ set(TARGET_SOURCES FluTheme.cpp Fluent.cpp FluentUI.cpp + NativeEventFilter.cpp WindowHelper.cpp qml_plugin.cpp ) @@ -37,18 +38,12 @@ set(TARGET_HEADERS FluTheme.h Fluent.h FluentUI.h - FramelessView.h + NativeEventFilter.h WindowHelper.h qml_plugin.h stdafx.h ) -if(WIN32) - set(TARGET_SOURCES ${TARGET_SOURCES} FramelessView_win.cpp) -else() - set(TARGET_SOURCES ${TARGET_SOURCES} FramelessView_unix.cpp) -endif() - add_definitions(-DVERSION_IN="1.0.0") add_definitions(-DVURI_STR="FluentUI")