Skip to content

Commit

Permalink
qsvg is now required
Browse files Browse the repository at this point in the history
for icons.
  • Loading branch information
rodlie committed May 5, 2024
1 parent bed7905 commit a1a0954
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if(UNIX AND NOT APPLE)
set(CPACK_RPM_PACKAGE_URL ${PROJECT_HOMEPAGE_URL})
set(CPACK_RPM_FILE_NAME "${FRICTION_NAME}.rpm")

set(CPACK_DEBIAN_PACKAGE_DEPENDS "libqt5multimedia5-plugins")
set(CPACK_DEBIAN_PACKAGE_DEPENDS "qt5-image-formats-plugins, libqt5multimedia5-plugins")
set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON)
set(CPACK_DEBIAN_PACKAGE_MAINTAINER ${PROJECT_COPYRIGHT})
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE ${PROJECT_HOMEPAGE_URL})
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/build_vfxplatform_friction.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,5 @@ cmake --build .

FRICTION_INSTALL_DIR=friction-${VERSION}
mkdir -p ${BUILD}/${FRICTION_INSTALL_DIR}/opt/friction/{bin,lib,share} || true
mkdir -p ${BUILD}/${FRICTION_INSTALL_DIR}/opt/friction/plugins/{audio,generic,platforminputcontexts,platforms,xcbglintegrations} || true
mkdir -p ${BUILD}/${FRICTION_INSTALL_DIR}/opt/friction/plugins/{audio,generic,platforminputcontexts,platforms,xcbglintegrations,imageformats} || true
DESTDIR=${BUILD}/${FRICTION_INSTALL_DIR} cmake --build . --target install
2 changes: 2 additions & 0 deletions src/scripts/build_vfxplatform_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ cp ${SDK}/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so
cp ${SDK}/plugins/platforms/libqoffscreen.so ${PLUG_DIR}/platforms/
cp ${SDK}/plugins/platforms/libqxcb.so ${PLUG_DIR}/platforms/
cp ${SDK}/plugins/xcbglintegrations/libqxcb-glx-integration.so ${PLUG_DIR}/xcbglintegrations/
cp ${SDK}/plugins/imageformats/libqsvg.so ${PLUG_DIR}/imageformats/

for so in ${PLUG_DIR}/*/*.so; do
DEPENDS=`ldd ${so} | awk '{print $3}'`
Expand Down Expand Up @@ -152,6 +153,7 @@ generic
platforminputcontexts
platforms
xcbglintegrations
imageformats
"
for pdir in ${PLUGS}; do
for so in ${BUILD}/${FRICTION_PKG}/opt/friction/plugins/${pdir}/*.so; do
Expand Down

0 comments on commit a1a0954

Please sign in to comment.