build: change to xmake mgr.
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
project(Struct 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
|
||||
InfoClient.h
|
||||
InfoClient.cpp
|
||||
InfoPack.hpp
|
||||
InfoDirFile.h
|
||||
InfoDirFile.cpp
|
||||
InfoMsg.h
|
||||
InfoMsg.cpp
|
||||
)
|
||||
|
||||
add_library(Struct STATIC ${SOURCES})
|
||||
target_link_libraries(Struct Qt${QT_VERSION_MAJOR}::Core)
|
||||
target_include_directories(Struct PUBLIC ${CMAKE_CURRENT_LIST_DIR})
|
||||
8
Struct/xmake.lua
Normal file
8
Struct/xmake.lua
Normal file
@@ -0,0 +1,8 @@
|
||||
add_rules("mode.debug", "mode.release")
|
||||
|
||||
target("Struct")
|
||||
add_rules("qt.static")
|
||||
add_includedirs(".", {public = true})
|
||||
add_files("*.h")
|
||||
add_files("*.cpp")
|
||||
add_frameworks("QtCore")
|
||||
Reference in New Issue
Block a user