syncthingtray/CMakeLists.txt

46 lines
1.4 KiB
CMake
Raw Normal View History

2016-08-25 00:45:32 +02:00
cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
# metadata
set(META_PROJECT_NAME syncthingtray)
set(META_PROJECT_TYPE application)
set(META_APP_AUTHOR "Martchus")
set(META_APP_URL "https://github.com/${META_APP_AUTHOR}/${META_PROJECT_NAME}")
set(META_APP_DESCRIPTION "Tray application for Syncthing")
2016-11-08 19:32:32 +01:00
set(META_APP_CATEGORIES "System;Utility;Network;FileTransfer")
2016-08-25 00:45:32 +02:00
set(META_VERSION_MAJOR 0)
2017-03-22 21:22:30 +01:00
set(META_VERSION_MINOR 6)
set(META_VERSION_PATCH 3)
set(META_VERSION_EXACT_SONAME ON)
2016-08-25 00:45:32 +02:00
project(${META_PROJECT_NAME})
# options for partial build
option(NO_CLI "whether building CLI should be skipped" OFF)
option(NO_TRAY "whether building the tray should be skipped" OFF)
option(NO_FILE_ITEM_ACTION_PLUGIN "whether building the file item action plugin should be skipped" OFF)
option(NO_MODEL "whether building models should be skipped, implies NO_TRAY" OFF)
option(NO_WIDGETS "whether building widgets should be skipped, implies NO_TRAY" OFF)
# add subdirectories
enable_testing()
add_subdirectory(connector)
add_subdirectory(testhelper)
link_directories(${LIB_SYNCTHING_CONNECTOR_BINARY_DIR})
2016-10-02 21:59:28 +02:00
if(NOT NO_CLI)
add_subdirectory(cli)
endif()
if(NOT NO_MODEL)
add_subdirectory(model)
link_directories(${LIB_SYNCTHING_MODEL_BINARY_DIR})
if(NOT NO_WIDGETS)
add_subdirectory(widgets)
if(NOT NO_TRAY)
add_subdirectory(tray)
endif()
endif()
2016-08-25 00:45:32 +02:00
endif()
2017-02-20 18:37:11 +01:00
if(NOT NO_FILE_ITEM_ACTION_PLUGIN)
add_subdirectory(fileitemactionplugin)
endif()