fix buggy windows opengl32.dll

This commit is contained in:
remi durand 2021-06-04 15:16:52 +02:00
parent 1ba0aa0db6
commit 98cfe57b8a
4 changed files with 19 additions and 30 deletions

View File

@ -89,18 +89,14 @@ jobs:
working-directory: ./build working-directory: ./build
shell: cmd shell: cmd
run: xcopy /RCYIE ..\resources package\resources run: xcopy /RCYIE ..\resources package\resources
- name: copy dll - name: copy dll & exe
working-directory: ./build working-directory: ./build
shell: cmd shell: cmd
run: xcopy /RCYIE src\release\*.dll package\ run: |
- name: copy exe xcopy /RCYIE src\release\*.dll package\
working-directory: ./build xcopy /RCYIE src\release\*.exe package\
shell: cmd xcopy /RCYIE c:\windows\system32\VCRUNTIME140* package\
run: xcopy /RCYIE src\release\*.exe package\ del package\opengl32.dll
- name: copy ms runtime
working-directory: ./build
shell: cmd
run: xcopy /RCYIE c:\windows\system32\VCRUNTIME140* package\
# - name: create zip # - name: create zip
# working-directory: ./build # working-directory: ./build
# shell: cmd # shell: cmd

View File

@ -89,18 +89,14 @@ jobs:
working-directory: ./build working-directory: ./build
shell: cmd shell: cmd
run: xcopy /RCYIE ..\resources package\resources run: xcopy /RCYIE ..\resources package\resources
- name: copy dll - name: copy dll & exe
working-directory: ./build working-directory: ./build
shell: cmd shell: cmd
run: xcopy /RCYIE src\Debug\*.dll package\ run: |
- name: copy exe xcopy /RCYIE src\release\*.dll package\
working-directory: ./build xcopy /RCYIE src\release\*.exe package\
shell: cmd xcopy /RCYIE c:\windows\system32\VCRUNTIME140* package\
run: xcopy /RCYIE src\Debug\*.exe package\ del package\opengl32.dll
- name: copy ms runtime
working-directory: ./build
shell: cmd
run: xcopy /RCYIE c:\windows\system32\VCRUNTIME140* package\
# - name: create zip # - name: create zip
# working-directory: ./build # working-directory: ./build
# shell: cmd # shell: cmd

View File

@ -89,18 +89,14 @@ jobs:
working-directory: ./build working-directory: ./build
shell: cmd shell: cmd
run: xcopy /RCYIE ..\resources package\resources run: xcopy /RCYIE ..\resources package\resources
- name: copy dll - name: copy dll & exe
working-directory: ./build working-directory: ./build
shell: cmd shell: cmd
run: xcopy /RCYIE src\release\*.dll package\ run: |
- name: copy exe xcopy /RCYIE src\release\*.dll package\
working-directory: ./build xcopy /RCYIE src\release\*.exe package\
shell: cmd xcopy /RCYIE c:\windows\system32\VCRUNTIME140* package\
run: xcopy /RCYIE src\release\*.exe package\ del package\opengl32.dll
- name: copy ms runtime
working-directory: ./build
shell: cmd
run: xcopy /RCYIE c:\windows\system32\VCRUNTIME140* package\
# - name: create zip # - name: create zip
# working-directory: ./build # working-directory: ./build
# shell: cmd # shell: cmd

View File

@ -27,3 +27,4 @@ set(SLIC3R_GITHUB "slic3r/Slic3r")
set(SLIC3R_DOWNLOAD "https://slic3r.org/download") set(SLIC3R_DOWNLOAD "https://slic3r.org/download")
# string to display in the spalshscreen # string to display in the spalshscreen
set(SLIC3R_INTRO "Slic3r contains sizable contributions from Prusa Research. Original work by Alessandro Ranellucci and the RepRap community.") set(SLIC3R_INTRO "Slic3r contains sizable contributions from Prusa Research. Original work by Alessandro Ranellucci and the RepRap community.")