Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authororetzl <oliver.retzl@gmail.com>2021-11-16 17:37:13 +0300
committersupermerill <merill@free.fr>2021-11-17 02:43:45 +0300
commit08971c7351ba61adf04374a6404b534dd0047224 (patch)
tree4c84fc9c9f943daa660e76ad1ec5bd26d53ba362
parent747991ad356ce7b3512fb09c61b5ece13fe01770 (diff)
Update How to build - Windows.md (#1894)
add location of libgmp-10.dll & libmpfr-4.dll
-rw-r--r--doc/How to build - Windows.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/How to build - Windows.md b/doc/How to build - Windows.md
index cc750108a..5590a40a3 100644
--- a/doc/How to build - Windows.md
+++ b/doc/How to build - Windows.md
@@ -28,13 +28,13 @@ cmake .. -G "Visual Studio 16 2019" -A x64
msbuild /m ALL_BUILD.vcxproj
```
-and then build Slic3r (in ./build):
+and then build and install Slic3r (in ./build as an elevated Command Prompt - 'Run As Administrator'):
```
cmake .. -G "Visual Studio 16 2019" -A x64 -DCMAKE_PREFIX_PATH="PATH_TO_Slic3r\deps\build\destdir\usr\local"
msbuild /m /P:Configuration=Release INSTALL.vcxproj
```
You can also build it in visual studio, for that open the .sln.
-Note that you need to have `libgmp-10.dll` and `libmpfr-4.dll` next to your built Slic3r. You can get them from any Slic3r release.
+Note that you need to have `libgmp-10.dll` and `libmpfr-4.dll` next to your built Slic3r. You can get them from any Slic3r release: So copy these two dlls from your deps-build dir (default: "\deps\build\destdir\usr\local\bin") into the target installation dir of Slic3r (default: "C:\Program Files (x86)\Slic3r")
If you want to create the zipped release, you can follow this [script](https://github.com/supermerill/Slic3r/blob/master/.github/workflows/ccpp_win.yml).