dbus-soundrecorder/CMakeLists.txt

51 lines
1.2 KiB
CMake
Raw Normal View History

2015-12-05 22:48:49 +01:00
cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
2015-12-08 08:34:14 +01:00
# add project files
set(HEADER_FILES
ffmpeglauncher.h
playerwatcher.h
)
set(SRC_FILES
ffmpeglauncher.cpp
main.cpp
playerwatcher.cpp
)
2015-12-08 08:34:14 +01:00
set(DBUS_FILES
org.freedesktop.DBus.Properties.xml
org.mpris.MediaPlayer2.xml
org.mpris.MediaPlayer2.Player.xml
)
2016-06-14 00:48:19 +02:00
set(DOC_FILES
README.md
)
2015-12-05 22:48:49 +01:00
# meta data
set(META_PROJECT_NAME dbus-soundrecorder)
2017-05-01 03:39:03 +02:00
set(META_PROJECT_VARNAME DBUS_SOUNDRECORDER)
2016-07-27 21:40:11 +02:00
set(META_PROJECT_TYPE application)
2015-12-05 22:48:49 +01:00
set(META_APP_NAME "D-Bus Sound Recorder")
set(META_APP_AUTHOR "Martchus")
set(META_APP_URL "https://github.com/${META_APP_AUTHOR}/${META_PROJECT_NAME}")
2016-07-27 21:40:11 +02:00
set(META_APP_DESCRIPTION "Records sound from Pulse Audio with ffmpeg while watching D-Bus to determine tracks and meta information")
2015-12-05 22:48:49 +01:00
set(META_VERSION_MAJOR 1)
2015-12-27 22:39:23 +01:00
set(META_VERSION_MINOR 2)
2016-06-14 00:48:19 +02:00
set(META_VERSION_PATCH 2)
2015-12-05 22:48:49 +01:00
# find c++utilities
2017-09-29 17:17:50 +02:00
find_package(c++utilities 4.10.0 REQUIRED)
use_cpp_utilities()
2015-12-05 22:48:49 +01:00
# find qtutilities
2016-07-27 21:40:11 +02:00
find_package(qtutilities 5.0.0 REQUIRED)
list(APPEND CMAKE_MODULE_PATH ${QT_UTILITIES_MODULE_DIRS})
2015-12-05 22:48:49 +01:00
# include modules to apply configuration
include(BasicConfig)
include(QtConfig)
include(WindowsResources)
include(AppTarget)
2016-07-04 23:31:02 +02:00
include(ShellCompletion)
2016-07-27 21:40:11 +02:00
include(ConfigHeader)