cmake: minor tweaks
Signed-off-by: Yuhang Zhao <2546789017@qq.com>
This commit is contained in:
parent
9e341e4e40
commit
fa5a21f7ca
|
@ -117,9 +117,9 @@ Vogen editor using **QSynthesis** framework. Repository URL: <https://gitee.com/
|
||||||
|
|
||||||
## Supported Platforms
|
## Supported Platforms
|
||||||
|
|
||||||
- Windows: Windows 7, Windows 8, Windows 8.1, Windows 10, Windows 11 (only actively tested on Windows 10 & 11)
|
- Windows: Windows Vista \~ 11 (only actively tested on Windows 10 & 11)
|
||||||
- Linux: any modern Linux distros should work, but only tested on Ubuntu 20.04 and Ubuntu 22.04
|
- Linux: any modern Linux distros should work, but only tested on Ubuntu 20.04 and Ubuntu 22.04
|
||||||
- macOS: only tested on macOS 12.3 due to lack of Apple devices
|
- macOS: only tested on macOS 12 & 13 due to lack of Apple devices
|
||||||
|
|
||||||
There are some additional restrictions for each platform, please refer to the _Platform notes_ section below.
|
There are some additional restrictions for each platform, please refer to the _Platform notes_ section below.
|
||||||
|
|
||||||
|
@ -136,7 +136,9 @@ cmake --install . --config Release --strip
|
||||||
|
|
||||||
If there are any errors when cloning the submodules, try run `git submodule update --init --recursive --remote` in the project directory, that command will download & update all the submodules. If it fails again, try execute it multiple times until it finally succeeds.
|
If there are any errors when cloning the submodules, try run `git submodule update --init --recursive --remote` in the project directory, that command will download & update all the submodules. If it fails again, try execute it multiple times until it finally succeeds.
|
||||||
|
|
||||||
Once the compilation and installation is done, you will be able to use the `find_package(FramelessHelper REQUIRED COMPONENTS Core Widgets Quick)` command to find and link to the FramelessHelper library. But before doing that, please make sure CMake knows where to find FramelessHelper, by passing the `CMAKE_PREFIX_PATH` variable to it. For example: `-DCMAKE_PREFIX_PATH=C:/my-cmake-packages;C:/my-toolchain;etc...`. Build FramelessHelper as a sub-directory of your CMake project is of course also supported. The supported FramelessHelper target names are `FramelessHelper::FramelessHelperCore`, `FramelessHelper::FramelessHelperWidgets` and `FramelessHelper::FramelessHelperQuick`.
|
Once the compilation and installation is done, you will be able to use the `find_package(FramelessHelper REQUIRED COMPONENTS Core Widgets Quick)` command to find and link to the FramelessHelper library. But before doing that, please make sure CMake knows where to find FramelessHelper, by passing the `CMAKE_PREFIX_PATH` variable to it. For example: `-DCMAKE_PREFIX_PATH=C:/my-cmake-packages;C:/my-toolchain;etc...`. Build FramelessHelper as a sub-directory of your CMake project is of course also supported. The supported FramelessHelper target names are `FramelessHelper::Core`, `FramelessHelper::Widgets` and `FramelessHelper::Quick`.
|
||||||
|
|
||||||
|
**IMPORTANT NOTE**: Currently *Ninja Multi-Config* is known to be **NOT** supported, you can only build one single configuration at a time, however, I'm planning to support it as soon as possible, in a future version.
|
||||||
|
|
||||||
## Use
|
## Use
|
||||||
|
|
||||||
|
|
|
@ -157,10 +157,8 @@ set(ALL_SOURCES ${PUBLIC_HEADERS} ${PRIVATE_HEADERS} ${SOURCES})
|
||||||
|
|
||||||
if(FRAMELESSHELPER_BUILD_STATIC)
|
if(FRAMELESSHELPER_BUILD_STATIC)
|
||||||
set(SUB_MOD_LIB_TYPE "STATIC")
|
set(SUB_MOD_LIB_TYPE "STATIC")
|
||||||
set(SUB_MOD_LIB_DIR "${CMAKE_INSTALL_LIBDIR}")
|
|
||||||
else()
|
else()
|
||||||
set(SUB_MOD_LIB_TYPE "SHARED")
|
set(SUB_MOD_LIB_TYPE "SHARED")
|
||||||
set(SUB_MOD_LIB_DIR "${CMAKE_INSTALL_BINDIR}")
|
|
||||||
endif()
|
endif()
|
||||||
add_library(${SUB_PROJ_NAME} ${SUB_MOD_LIB_TYPE} ${ALL_SOURCES})
|
add_library(${SUB_PROJ_NAME} ${SUB_MOD_LIB_TYPE} ${ALL_SOURCES})
|
||||||
add_library(${PROJECT_NAME}::${SUB_PROJ_NAME} ALIAS ${SUB_PROJ_NAME})
|
add_library(${PROJECT_NAME}::${SUB_PROJ_NAME} ALIAS ${SUB_PROJ_NAME})
|
||||||
|
@ -173,6 +171,12 @@ set_target_properties(${SUB_PROJ_NAME} PROPERTIES
|
||||||
|
|
||||||
set(SUB_MOD_TARGETS ${SUB_PROJ_NAME})
|
set(SUB_MOD_TARGETS ${SUB_PROJ_NAME})
|
||||||
|
|
||||||
|
if(WIN32 AND NOT FRAMELESSHELPER_BUILD_STATIC)
|
||||||
|
set(SUB_MOD_LIB_DIR "${CMAKE_INSTALL_BINDIR}")
|
||||||
|
else()
|
||||||
|
set(SUB_MOD_LIB_DIR "${CMAKE_INSTALL_LIBDIR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
set(__prefix "")
|
set(__prefix "")
|
||||||
if(NOT WIN32)
|
if(NOT WIN32)
|
||||||
set(__prefix "lib")
|
set(__prefix "lib")
|
||||||
|
|
|
@ -103,10 +103,8 @@ set(ALL_SOURCES ${PUBLIC_HEADERS} ${PRIVATE_HEADERS} ${SOURCES})
|
||||||
|
|
||||||
if(FRAMELESSHELPER_BUILD_STATIC)
|
if(FRAMELESSHELPER_BUILD_STATIC)
|
||||||
set(SUB_MOD_LIB_TYPE "STATIC")
|
set(SUB_MOD_LIB_TYPE "STATIC")
|
||||||
set(SUB_MOD_LIB_DIR "${CMAKE_INSTALL_LIBDIR}")
|
|
||||||
else()
|
else()
|
||||||
set(SUB_MOD_LIB_TYPE "SHARED")
|
set(SUB_MOD_LIB_TYPE "SHARED")
|
||||||
set(SUB_MOD_LIB_DIR "${CMAKE_INSTALL_BINDIR}")
|
|
||||||
endif()
|
endif()
|
||||||
add_library(${SUB_PROJ_NAME} ${SUB_MOD_LIB_TYPE} ${ALL_SOURCES})
|
add_library(${SUB_PROJ_NAME} ${SUB_MOD_LIB_TYPE} ${ALL_SOURCES})
|
||||||
add_library(${PROJECT_NAME}::${SUB_PROJ_NAME} ALIAS ${SUB_PROJ_NAME})
|
add_library(${PROJECT_NAME}::${SUB_PROJ_NAME} ALIAS ${SUB_PROJ_NAME})
|
||||||
|
@ -119,6 +117,12 @@ set_target_properties(${SUB_PROJ_NAME} PROPERTIES
|
||||||
|
|
||||||
set(SUB_MOD_TARGETS ${SUB_PROJ_NAME})
|
set(SUB_MOD_TARGETS ${SUB_PROJ_NAME})
|
||||||
|
|
||||||
|
if(WIN32 AND NOT FRAMELESSHELPER_BUILD_STATIC)
|
||||||
|
set(SUB_MOD_LIB_DIR "${CMAKE_INSTALL_BINDIR}")
|
||||||
|
else()
|
||||||
|
set(SUB_MOD_LIB_DIR "${CMAKE_INSTALL_LIBDIR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
set(__prefix "")
|
set(__prefix "")
|
||||||
if(NOT WIN32)
|
if(NOT WIN32)
|
||||||
set(__prefix "lib")
|
set(__prefix "lib")
|
||||||
|
|
|
@ -91,10 +91,8 @@ set(ALL_SOURCES ${PUBLIC_HEADERS} ${PRIVATE_HEADERS} ${SOURCES})
|
||||||
|
|
||||||
if(FRAMELESSHELPER_BUILD_STATIC)
|
if(FRAMELESSHELPER_BUILD_STATIC)
|
||||||
set(SUB_MOD_LIB_TYPE "STATIC")
|
set(SUB_MOD_LIB_TYPE "STATIC")
|
||||||
set(SUB_MOD_LIB_DIR "${CMAKE_INSTALL_LIBDIR}")
|
|
||||||
else()
|
else()
|
||||||
set(SUB_MOD_LIB_TYPE "SHARED")
|
set(SUB_MOD_LIB_TYPE "SHARED")
|
||||||
set(SUB_MOD_LIB_DIR "${CMAKE_INSTALL_BINDIR}")
|
|
||||||
endif()
|
endif()
|
||||||
add_library(${SUB_PROJ_NAME} ${SUB_MOD_LIB_TYPE} ${ALL_SOURCES})
|
add_library(${SUB_PROJ_NAME} ${SUB_MOD_LIB_TYPE} ${ALL_SOURCES})
|
||||||
add_library(${PROJECT_NAME}::${SUB_PROJ_NAME} ALIAS ${SUB_PROJ_NAME})
|
add_library(${PROJECT_NAME}::${SUB_PROJ_NAME} ALIAS ${SUB_PROJ_NAME})
|
||||||
|
@ -105,6 +103,12 @@ set_target_properties(${SUB_PROJ_NAME} PROPERTIES
|
||||||
SOVERSION "${PROJECT_VERSION_MAJOR}"
|
SOVERSION "${PROJECT_VERSION_MAJOR}"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(WIN32 AND NOT FRAMELESSHELPER_BUILD_STATIC)
|
||||||
|
set(SUB_MOD_LIB_DIR "${CMAKE_INSTALL_BINDIR}")
|
||||||
|
else()
|
||||||
|
set(SUB_MOD_LIB_DIR "${CMAKE_INSTALL_LIBDIR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
set(__prefix "")
|
set(__prefix "")
|
||||||
if(NOT WIN32)
|
if(NOT WIN32)
|
||||||
set(__prefix "lib")
|
set(__prefix "lib")
|
||||||
|
|
Loading…
Reference in New Issue