-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mathieu Gravey
committed
Nov 12, 2019
1 parent
a7f6447
commit d57e75e
Showing
3 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
if NOT exist "C:\Program Files\ZeroMQ 4.0.4" ( | ||
powershell -Command "(New-Object Net.WebClient).DownloadFile('https://miru.hk/archive/ZeroMQ-4.0.4~miru1.0-x64.exe', 'ZeroMQ-4.0.4~miru1.0-x64.exe')" | ||
start /w ZeroMQ-4.0.4~miru1.0-x64.exe | ||
) | ||
if NOT exist "cppzmq-master" ( | ||
powershell -Command "(New-Object Net.WebClient).DownloadFile('https://codeload.github.com/zeromq/cppzmq/zip/master', 'cppzmq-master.zip')" | ||
powershell Expand-Archive cppzmq-master.zip -DestinationPath . | ||
) | ||
if NOT exist "jsoncpp-master" ( | ||
powershell -Command "(New-Object Net.WebClient).DownloadFile('https://codeload.github.com/open-source-parsers/jsoncpp/zip/master', 'jsoncpp-master.zip')" | ||
powershell Expand-Archive jsoncpp-master.zip -DestinationPath . | ||
cd jsoncpp-master | ||
py amalgamate.py | ||
cd .. | ||
) | ||
|
||
for %%x in ( 3.8, 3.7, 3.6, 3.5) do ( | ||
py -%%x -m pip install --upgrade pip | ||
py -%%x -m pip install numpy setuptools wheel | ||
py -%%x setup_Win.py bdist --format=wininst | ||
del build /s /f /q | ||
) |