This commit is contained in:
2026-02-20 12:18:52 +08:00
parent ab7ee978e7
commit c5d109e9be
18 changed files with 1444 additions and 567 deletions

View File

@@ -93,3 +93,11 @@ set_property(TARGET QQ PROPERTY FOLDER "demo")
COMMAND "${CMAKE_CURRENT_SOURCE_DIR}/kugou/extract${ARCH_NAME}.bat" "$<TARGET_FILE_DIR:kugou>"
COMMENT "Running extract.bat to conditionally extract dll.zip"
)
# TableView Demo - LayeredWindow + VLayout + TableView + 右键菜单
project(TableViewDemo)
file(GLOB src TableViewDemo/*.*)
add_executable(TableViewDemo WIN32 ${src})
target_include_directories(TableViewDemo PRIVATE ${include})
target_link_libraries(TableViewDemo PRIVATE EzUI)
set_property(TARGET TableViewDemo PROPERTY FOLDER "demo")