mirror of
https://github.com/netinvent/npbackup.git
synced 2025-02-24 22:44:04 +08:00
19 lines
385 B
Batchfile
19 lines
385 B
Batchfile
|
@echo off
|
||
|
|
||
|
:: This is an example compiler script
|
||
|
|
||
|
SET PYTHON64=c:\python310-64\python.exe
|
||
|
SET PYTHON32=c:\python37-32\python.exe
|
||
|
|
||
|
|
||
|
cd C:\GIT\npbackup
|
||
|
|
||
|
:: Make sure we add npbackup in python path so bin and npbackup subfolders become packages
|
||
|
SET PYTHONPATH=c:\GIT\npbackup
|
||
|
|
||
|
"%PYTHON64%" bin\compile.py --arch x64 --audience all
|
||
|
"%PYTHON32%" bin\compile.py --arch x86 --audience all
|
||
|
|
||
|
|
||
|
|