Skip to content

Commit 4315125

Browse files
feat: font_typo;motion_spec and radius scale
1 parent 9e81f6c commit 4315125

29 files changed

Lines changed: 3809 additions & 1 deletion

example/gui/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
log_info("Example GUI" "Managing GUI Examples")
22

33
add_subdirectory(material_color_scheme)
4+
add_subdirectory(material_typography)
5+
add_subdirectory(material_radius_scale)
6+
add_subdirectory(material_motion_spec)
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Material Motion Spec Gallery Example
2+
log_info("Material Motion Spec" "Building Motion Spec Gallery Example")
3+
4+
add_executable(material_motion_spec_gallery
5+
main.cpp
6+
MaterialMotionSpecMainWindow.h
7+
MaterialMotionSpecMainWindow.cpp
8+
)
9+
10+
target_link_libraries(material_motion_spec_gallery PRIVATE
11+
Qt6::Widgets
12+
Qt6::Core
13+
Qt6::Gui
14+
cfui
15+
)
16+
17+
# Windows 下设置为 GUI 应用(不显示控制台窗口)
18+
if(WIN32)
19+
set_target_properties(material_motion_spec_gallery PROPERTIES
20+
WIN32_EXECUTABLE TRUE
21+
)
22+
# 自动部署 Qt DLL
23+
qt_add_windows_deploy(material_motion_spec_gallery AUTO_DEPLOY)
24+
endif()

0 commit comments

Comments
 (0)