build: back to cmake.

This commit is contained in:
2025-07-06 23:51:45 +08:00
parent 13be630726
commit a04202c00e
33 changed files with 436 additions and 5247 deletions

22
Protocol/CMakeLists.txt Normal file
View File

@@ -0,0 +1,22 @@
cmake_minimum_required(VERSION 3.16)
project(Protocol LANGUAGES CXX)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Core)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Core)
set(SOURCES
Protocol.cxx
Protocol.h
)
add_library(Protocol STATIC ${SOURCES})
target_link_libraries(Protocol Qt${QT_VERSION_MAJOR}::Core Struct)
target_include_directories(Protocol PUBLIC ${CMAKE_CURRENT_LIST_DIR})

View File

@@ -1,9 +0,0 @@
add_rules("mode.debug", "mode.release")
target("Protocol")
add_rules("qt.static")
add_includedirs(".", {public = true})
add_files("*.cxx")
add_files("*.h")
add_deps("Struct")
add_frameworks("QtCore")