mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-22 11:18:08 -06:00
17 lines
306 B
PowerShell
17 lines
306 B
PowerShell
# Build a TW Blue installer.
|
|
# Must be called from root of repo
|
|
echo "Generating documentation..."
|
|
cd doc
|
|
python documentation_importer.py
|
|
python generator.py
|
|
mv documentation ..\src
|
|
cd ..
|
|
echo "done."
|
|
|
|
echo "Building binary..."
|
|
cd src
|
|
python write_version_data.py
|
|
python setup.py build
|
|
cd ..
|
|
echo "done."
|