Browse Source

CMake: Fix optional features handling

adaptive-webui-19844
Vladimir Golovnev (Glassez) 5 years ago
parent
commit
a22f921941
No known key found for this signature in database
GPG Key ID: 52A2C7DEE2DFA6F7
  1. 8
      src/CMakeLists.txt
  2. 10
      src/app/CMakeLists.txt

8
src/CMakeLists.txt

@ -12,11 +12,9 @@ if (Boost_VERSION VERSION_LESS 106000)
endif() endif()
find_package(Qt5 ${requiredQtVersion} REQUIRED COMPONENTS Core Network Xml LinguistTools) find_package(Qt5 ${requiredQtVersion} REQUIRED COMPONENTS Core Network Xml LinguistTools)
if (NOT DISABLE_GUI) if (GUI)
find_package(Qt5Widgets ${requiredQtVersion} REQUIRED) find_package(Qt5Widgets ${requiredQtVersion} REQUIRED)
find_package(Qt5DBus ${requiredQtVersion}) find_package(Qt5DBus ${requiredQtVersion})
else()
add_definitions(-DDISABLE_GUI)
endif() endif()
set_package_properties(Qt5DBus PROPERTIES set_package_properties(Qt5DBus PROPERTIES
@ -54,10 +52,10 @@ configure_file(config.h.cmakein ${CMAKE_CURRENT_BINARY_DIR}/config.h)
add_subdirectory(app) add_subdirectory(app)
add_subdirectory(base) add_subdirectory(base)
if (NOT DISABLE_GUI) if (GUI)
add_subdirectory(gui) add_subdirectory(gui)
endif () endif ()
if (NOT DISABLE_WEBUI) if (WEBUI)
add_subdirectory(webui) add_subdirectory(webui)
endif() endif()

10
src/app/CMakeLists.txt

@ -34,7 +34,7 @@ include(QbtTranslations)
file(GLOB QBT_TS_FILES ../lang/*.ts) file(GLOB QBT_TS_FILES ../lang/*.ts)
qbt_add_translations(qBittorrent QRC_FILE "../lang/lang.qrc" TS_FILES ${QBT_TS_FILES}) qbt_add_translations(qBittorrent QRC_FILE "../lang/lang.qrc" TS_FILES ${QBT_TS_FILES})
if (NOT DISABLE_WEBUI) if (WEBUI)
file(GLOB QBT_WEBUI_TS_FILES ../webui/www/translations/*.ts) file(GLOB QBT_WEBUI_TS_FILES ../webui/www/translations/*.ts)
qbt_add_translations(qBittorrent QRC_FILE "../webui/www/translations/webui_translations.qrc" TS_FILES ${QBT_WEBUI_TS_FILES}) qbt_add_translations(qBittorrent QRC_FILE "../webui/www/translations/webui_translations.qrc" TS_FILES ${QBT_WEBUI_TS_FILES})
endif() endif()
@ -63,7 +63,7 @@ if (STACKTRACE)
target_sources(qBittorrent PRIVATE stacktrace.h) target_sources(qBittorrent PRIVATE stacktrace.h)
else() else()
target_sources(qBittorrent PRIVATE stacktrace_win.h) target_sources(qBittorrent PRIVATE stacktrace_win.h)
if (NOT DISABLE_GUI) if (GUI)
target_sources(qBittorrent PRIVATE stacktracedialog.cpp stacktracedialog.h) target_sources(qBittorrent PRIVATE stacktracedialog.cpp stacktracedialog.h)
endif() endif()
@ -85,7 +85,7 @@ if (STACKTRACE)
endif() endif()
endif() endif()
if (NOT DISABLE_GUI) if (GUI)
target_link_libraries(qBittorrent PRIVATE qbt_gui) target_link_libraries(qBittorrent PRIVATE qbt_gui)
set_target_properties(qBittorrent set_target_properties(qBittorrent
PROPERTIES PROPERTIES
@ -99,7 +99,7 @@ else()
) )
endif() endif()
if (NOT DISABLE_WEBUI) if (WEBUI)
target_link_libraries(qBittorrent PRIVATE qbt_webui) target_link_libraries(qBittorrent PRIVATE qbt_webui)
endif() endif()
@ -156,7 +156,7 @@ install(TARGETS qBittorrent
COMPONENT runtime COMPONENT runtime
) )
if (NOT DISABLE_GUI AND APPLE) if (GUI AND APPLE)
find_package(Qt5Svg REQUIRED) find_package(Qt5Svg REQUIRED)
include(bundle) include(bundle)
endif() endif()

Loading…
Cancel
Save