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
shell: cmd
run: xcopy /RCYIE ..\resources package\resources
- name: copy dll
- name: copy dll & exe
working-directory: ./build
shell: cmd
run: xcopy /RCYIE src\release\*.dll package\
- name: copy exe
working-directory: ./build
shell: cmd
run: xcopy /RCYIE src\release\*.exe package\
- name: copy ms runtime
working-directory: ./build
shell: cmd
run: xcopy /RCYIE c:\windows\system32\VCRUNTIME140* package\
run: |
xcopy /RCYIE src\release\*.dll package\
xcopy /RCYIE src\release\*.exe package\
xcopy /RCYIE c:\windows\system32\VCRUNTIME140* package\
del package\opengl32.dll
# - name: create zip
# working-directory: ./build
# shell: cmd

View File

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

View File

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

View File

@ -27,3 +27,4 @@ set(SLIC3R_GITHUB "slic3r/Slic3r")
set(SLIC3R_DOWNLOAD "https://slic3r.org/download")
# 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.")