1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-03-15 07:29:15 +01:00

win: update OpenGL dependencies exclude

This commit is contained in:
U-BAMS\philippe.renon 2022-08-18 21:00:31 +02:00
parent 184631120f
commit 462639c36e

View File

@ -57,7 +57,7 @@ defineTest(addCopyDependenciesTarget) {
file = $$1
src = $$2/$$1
dest = $$3
excludes = OPENGL32.dll libgallium_wgl.dll libLLVM-14.dll
target_file = $${OUT_PWD}/deps/$${file}.deps
target = $${file}_deps
@ -65,7 +65,7 @@ defineTest(addCopyDependenciesTarget) {
$${target}.depends = $$src
$${target}.commands = -@$(MKDIR) \"$$dirname(target_file)\" $$addNewline()
$${target}.commands += $$(PYTHON) $$(ROOT_DIR)/make/copy_dependencies.py --dest \"$$dest\" --files \"$$src\" --excludes OPENGL32.DLL > \"$$target_file\"
$${target}.commands += $$(PYTHON) $$(ROOT_DIR)/make/copy_dependencies.py --dest \"$$dest\" --files \"$$src\" --excludes $$excludes > \"$$target_file\"
QMAKE_EXTRA_TARGETS += $$target
POST_TARGETDEPS += $$eval($${target}.target)