gui: add basic gui code.

This commit is contained in:
2025-06-15 14:31:54 +08:00
parent 72df3216a5
commit 7d123b2c06
40 changed files with 1483 additions and 12 deletions

View File

@@ -15,11 +15,8 @@ find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Core)
set(SOURCES
Protocol.cxx
Protocol.h
InfoClient.h
InfoClient.cpp
InfoPack.hpp
)
add_library(Protocol STATIC ${SOURCES})
target_link_libraries(Protocol Qt${QT_VERSION_MAJOR}::Core)
target_link_libraries(Protocol Qt${QT_VERSION_MAJOR}::Core Struct)
target_include_directories(Protocol PUBLIC ${CMAKE_CURRENT_LIST_DIR})