Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.8 KiB
56 lines
1.8 KiB
cmake_minimum_required(VERSION 3.5) |
|
cmake_policy(VERSION 3.5) |
|
|
|
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules) |
|
include(FunctionReadVersion) |
|
|
|
read_version("${CMAKE_CURRENT_SOURCE_DIR}/version.pri" VER_MAJOR VER_MINOR VER_BUGFIX VER_BUILD VER_STATUS) |
|
# message(STATUS "Project version is: ${VER_MAJOR}.${VER_MINOR}.${VER_BUGFIX}.${VER_BUILD} (${VER_STATUS})") |
|
|
|
project(qBittorrent VERSION ${VER_MAJOR}.${VER_MINOR}.${VER_BUGFIX}.${VER_BUILD}) |
|
|
|
set(PROJECT_VERSION "${VER_MAJOR}.${VER_MINOR}.${VER_BUGFIX}") |
|
|
|
if (NOT VER_BUILD EQUAL 0) |
|
set(PROJECT_VERSION "${PROJECT_VERSION}.${VER_BUILD}") |
|
endif() |
|
|
|
set(PROJECT_VERSION "${PROJECT_VERSION}${VER_STATUS}") |
|
|
|
add_definitions(-DQBT_VERSION_MAJOR=${VER_MAJOR}) |
|
add_definitions(-DQBT_VERSION_MINOR=${VER_MINOR}) |
|
add_definitions(-DQBT_VERSION_BUGFIX=${VER_BUGFIX}) |
|
add_definitions(-DQBT_VERSION_BUILD=${VER_BUILD}) |
|
|
|
add_definitions(-DQBT_VERSION="v${PROJECT_VERSION}") |
|
add_definitions(-DQBT_VERSION_2="${PROJECT_VERSION}") |
|
|
|
if (UNIX AND NOT APPLE) |
|
include(GNUInstallDirs) |
|
endif (UNIX AND NOT APPLE) |
|
|
|
if(WIN32) |
|
include(winconf) |
|
endif(WIN32) |
|
|
|
# we need options here, because they are used not only in "src" subdir, but in the "dist" dir too |
|
include(CMakeDependentOption) |
|
|
|
option(SYSTEM_QTSINGLEAPPLICATION |
|
"Use the system qtsingleapplication library or shipped one otherwise") |
|
|
|
option(GUI "Allows to disable GUI for headless running. Disables QtDBus and the GeoIP Database" ON) |
|
|
|
option(WEBUI "Allows to disable the WebUI." ON) |
|
|
|
option(STACKTRACE "Enable stacktrace feature" ON) |
|
|
|
if (UNIX) |
|
cmake_dependent_option(SYSTEMD "Install the systemd service file (headless only)" OFF |
|
"NOT GUI" OFF) |
|
cmake_dependent_option(DBUS "Enable use of QtDBus (GUI only)" ON "GUI" OFF) |
|
endif(UNIX) |
|
|
|
|
|
add_subdirectory(src) |
|
add_subdirectory(dist)
|
|
|