10 lines
246 B
Batchfile
10 lines
246 B
Batchfile
REM Needs vcvars64.bat to be called
|
|
git submodule init
|
|
git submodule update --recursive
|
|
md build
|
|
cd build
|
|
COPY %TEMP%\dgl.dll .
|
|
cd ..\python
|
|
"%PYTHON%" setup.py install --single-version-externally-managed --record=record.txt || EXIT /B 1
|
|
EXIT /B
|