Skip to content
Snippets Groups Projects
Commit ffe24cb6 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

package: win32: don't install Qt pdbs if Qt is disabled

parent 6717dd67
No related branches found
No related tags found
1 merge request!5301package: win32: don't install Qt pdbs if Qt is disabled
Pipeline #463242 passed with warnings with stage
in 1 hour, 44 minutes, and 3 seconds
......@@ -29,7 +29,9 @@ if ENABLE_PDB
cp lib/.libs/libvlc.pdb '$(DESTDIR)$(bindir)'
cp src/.libs/libvlccore.pdb '$(DESTDIR)$(bindir)'
find '$(DESTDIR)$(libdir)/vlc/plugins' -name "*.dll" -exec sh -c "echo {} | sed -e 's@$(DESTDIR)$(libdir)/vlc/plugins/\(.*\)/\(.*\).dll@modules/.libs/\2.pdb $(DESTDIR)$(libdir)/vlc/plugins/\1@' | xargs -t cp " \;
if ENABLE_QT
find modules/gui/qt/.libs/ -name "*.pdb" -exec cp {} '$(DESTDIR)$(libdir)/vlc/plugins/gui/' \;
endif
endif
touch $@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment