summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitattributes17
-rw-r--r--CMakeLists.txt12
2 files changed, 23 insertions, 6 deletions
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..590d191
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,17 @@
+# remove files from deployment using `git archive`
+
+# git files
+.gitattributes export-ignore
+.github export-ignore
+.gitignore export-ignore
+
+# several files and directories we never want to export
+# a little bit belt and braces as the most of these files
+# should never ever be in the repository
+
+.*~ export-ignore
+.kdev4 export-ignore
+
+/build export-ignore
+/temp export-ignore
+/tmp export-ignore
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 28541eb..7adf7ac 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,7 @@ project(pavucontrol-qt)
option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF)
-set(LXQTBT_MINIMUM_VERSION "0.1.0")
+set(LXQTBT_MINIMUM_VERSION "0.4.0")
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
set(CMAKE_INCLUDE_CURRENT_DIR ON)
@@ -13,8 +13,8 @@ set(CMAKE_AUTOUIC ON)
include(GNUInstallDirs)
-find_package(Qt5Widgets REQUIRED QUIET)
-find_package(Qt5LinguistTools REQUIRED QUIET)
+find_package(Qt5Widgets REQUIRED)
+find_package(Qt5LinguistTools REQUIRED)
find_package(Qt5DBus REQUIRED)
find_package(lxqt-build-tools ${LXQTBT_MINIMUM_VERSION} REQUIRED)
@@ -24,15 +24,15 @@ if(NOT CMAKE_BUILD_TYPE)
endif()
set(PAVUCONTROLQT_MAJOR_VERSION 0)
-set(PAVUCONTROLQT_MINOR_VERSION 2)
-set(PAVUCONTROLQT_PATCH_VERSION 1)
+set(PAVUCONTROLQT_MINOR_VERSION 3)
+set(PAVUCONTROLQT_PATCH_VERSION 0)
set(PAVUCONTROLQT_VERSION ${PAVUCONTROLQT_MAJOR_VERSION}.${PAVUCONTROLQT_MINOR_VERSION}.${PAVUCONTROLQT_PATCH_VERSION})
add_definitions("-DPAVUCONTROLQT_VERSION=\"${PAVUCONTROLQT_VERSION}\"")
include(LXQtCompilerSettings NO_POLICY_SCOPE)
include(LXQtTranslate)
-find_package(PkgConfig REQUIRED QUIET)
+find_package(PkgConfig REQUIRED)
pkg_check_modules(
PULSE REQUIRED
libpulse>=5.0