mirror of
				https://github.com/MCV-Software/TWBlue.git
				synced 2025-11-03 21:37:05 +00: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."
 |