mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-25 09:18:54 -05:00
Added missing dependency to libqt5texttospeech5-dev. Fix libapt and libsgp4s external library install for Ubuntu build
This commit is contained in:
parent
e2ddaeba1a
commit
a2b1e5207f
@ -307,13 +307,13 @@ if (BUILD_GUI)
|
||||
find_package(OpenGL REQUIRED)
|
||||
find_package(Qt5
|
||||
REQUIRED COMPONENTS
|
||||
OpenGL
|
||||
Quick
|
||||
QuickWidgets
|
||||
Positioning
|
||||
Location
|
||||
Charts
|
||||
TextToSpeech)
|
||||
OpenGL
|
||||
Quick
|
||||
QuickWidgets
|
||||
Positioning
|
||||
Location
|
||||
Charts
|
||||
TextToSpeech)
|
||||
endif()
|
||||
|
||||
# other requirements
|
||||
|
5
debian/control
vendored
5
debian/control
vendored
@ -14,11 +14,12 @@ Build-Depends: debhelper (>= 9),
|
||||
libqt5multimedia5-plugins,
|
||||
libqt5websockets5-dev,
|
||||
libqt5quick5,
|
||||
libqt5texttospeech5-dev,
|
||||
qml-module-qtlocation,
|
||||
qml-module-qtpositioning,
|
||||
qml-module-qtquick-window2,
|
||||
qml-module-qtquick-dialogs,
|
||||
qml-module-qtquick-controls,
|
||||
qml-module-qtquick-dialogs,
|
||||
qml-module-qtquick-controls,
|
||||
qml-module-qtquick-layouts,
|
||||
libqt5serialport5-dev,
|
||||
libqt5charts5-dev,
|
||||
|
12
external/CMakeLists.txt
vendored
12
external/CMakeLists.txt
vendored
@ -360,7 +360,11 @@ if ((NOT LIBDSDCC_FOUND OR LIBDSDCC_EXTERNAL) AND LIBMBE_FOUND)
|
||||
endif ((NOT LIBDSDCC_FOUND OR LIBDSDCC_EXTERNAL) AND LIBMBE_FOUND)
|
||||
|
||||
# For APT demodulator
|
||||
set(APT_LIBRARIES "${SDRANGEL_BINARY_LIB_DIR}/apt.lib" CACHE INTERNAL "")
|
||||
if (WIN32)
|
||||
set(APT_LIBRARIES "${SDRANGEL_BINARY_LIB_DIR}/apt.lib" CACHE INTERNAL "")
|
||||
elseif (LINUX)
|
||||
set(LIBDSDCC_LIBRARIES "${EXTERNAL_BUILD_LIBRARIES}/lib/libapt${CMAKE_SHARED_LIBRARY_SUFFIX}" CACHE INTERNAL "")
|
||||
endif()
|
||||
ExternalProject_Add(apt
|
||||
GIT_REPOSITORY https://github.com/srcejon/aptdec.git
|
||||
GIT_TAG libaptdec
|
||||
@ -386,7 +390,11 @@ endif ()
|
||||
# For Satellite Tracker feature
|
||||
# No tags for this in github - but doesn't change often
|
||||
# Fails to build with CMAKE_INTERPROCEDURAL_OPTIMIZATION=ON on Windows
|
||||
set(SGP4_LIBRARIES "${SDRANGEL_BINARY_LIB_DIR}/sgp4s.lib" CACHE INTERNAL "")
|
||||
if (WIN32)
|
||||
set(SGP4_LIBRARIES "${SDRANGEL_BINARY_LIB_DIR}/sgp4s.lib" CACHE INTERNAL "")
|
||||
elseif (LINUX)
|
||||
set(LIBDSDCC_LIBRARIES "${EXTERNAL_BUILD_LIBRARIES}/lib/libsgp4s${CMAKE_SHARED_LIBRARY_SUFFIX}" CACHE INTERNAL "")
|
||||
endif()
|
||||
ExternalProject_Add(sgp4
|
||||
GIT_REPOSITORY https://github.com/dnwrnr/sgp4.git
|
||||
PREFIX "${EXTERNAL_BUILD_LIBRARIES}/sgp4"
|
||||
|
Loading…
Reference in New Issue
Block a user