ED_LRR/build.bat

10 lines
No EOL
372 B
Batchfile

@echo off
:: TODO: convert to python script
:: set up new conda env, install packages, build, remove conda env
call conda create -y -n ed_lrr python=3 pycrypto || exit /b 1
call conda activate ed_lrr || exit /b 1
call conda install -y -c conda-forge nuitka
vcvars x64
python build.py
call conda deactivate || exit /b 1
call conda env remove -n ed_lrr || exit /b 1