Skip to content

Commit

Permalink
Track libqgis_3d.so in RPM spec file
Browse files Browse the repository at this point in the history
  • Loading branch information
daniviga committed Oct 26, 2017
1 parent 40c0b0b commit c75ac62
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion rpm/qgis.spec.template
Expand Up @@ -18,7 +18,10 @@
# is pushed to stable
%if 0%{?fedora} > 26
%global configure_with_3d -D WITH_3D:BOOL=TRUE
BuildRequires: qt5-qt3d-devel
%global build_with_3d 1
%else
%global configure_with_3d -D WITH_3D:BOOL=FALSE
%global build_with_3d 0
%endif

Name: qgis
Expand Down Expand Up @@ -105,6 +108,9 @@ BuildRequires: qt5-qtwebkit-devel
BuildRequires: qt5-qtxmlpatterns-devel
BuildRequires: qtkeychain-qt5-devel
BuildRequires: qextserialport-devel
%if 0%{?build_with_3d}
BuildRequires: qt5-qt3d-devel
%endif

# Qwt stuff
BuildRequires: qwt-devel
Expand Down Expand Up @@ -330,6 +336,9 @@ update-mime-database %{?fedora:-n} %{_datadir}/mime &> /dev/null || :
%{_libdir}/lib%{name}_analysis.so.*
%{_libdir}/lib%{name}_core.so.*
%{_libdir}/lib%{name}_gui.so.*
%if 0%{?build_with_3d}
%{_libdir}/lib%{name}_3d.so.*
%endif
%{_libdir}/%{name}/
%{_qt5_prefix}/plugins/sqldrivers/libqsqlspatialite.so
%{_bindir}/%{name}
Expand Down

0 comments on commit c75ac62

Please sign in to comment.