File 0001-Replace-deprecated-qt5_use_modules-macro.patch of Package gqrx
From f94660a75ea4cfd432be58bb962cbc9eef404814 Mon Sep 17 00:00:00 2001
From: Alexander Fasching <fasching.a91@gmail.com>
Date: Wed, 30 May 2018 11:11:54 +0200
Subject: [PATCH] Replace deprecated qt5_use_modules macro
---
CMakeLists.txt | 2 +-
src/CMakeLists.txt | 5 ++++-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 16bbd47..a010cbe 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.8.0)
+cmake_minimum_required(VERSION 2.8.11)
# Project name
project(gqrx)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 6c0cbd3..2598f22 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -58,10 +58,13 @@ endif(WIN32)
#######################################################################################################################
# Build the program
add_executable(${PROJECT_NAME} ${${PROJECT_NAME}_SOURCE} ${UIS_HDRS} ${RESOURCES_LIST})
-qt5_use_modules(${PROJECT_NAME} Core Network Widgets Svg)
set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
# The pulse libraries are only needed on Linux. On other platforms they will not be found, so having them here is fine.
target_link_libraries(${PROJECT_NAME}
+ Qt5::Core
+ Qt5::Network
+ Qt5::Widgets
+ Qt5::Svg
${Boost_LIBRARIES}
${GNURADIO_ALL_LIBRARIES}
${GNURADIO_OSMOSDR_LIBRARIES}
--
2.13.7