chore: baseline usable version

This commit is contained in:
dela
2026-06-10 11:17:51 +08:00
commit a2f82a86b6
932 changed files with 172551 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
project(WidgetFrame)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTORCC ON)
file(GLOB _src *.h *.cpp)
add_library(${PROJECT_NAME} STATIC)
qm_configure_target(${PROJECT_NAME}
FEATURES cxx_std_17
SOURCES ${_src}
QT_LINKS Core Gui Widgets
)
target_include_directories(${PROJECT_NAME} PUBLIC . ..)