mirror of
				https://github.com/Laupetin/OpenAssetTools.git
				synced 2025-10-31 18:47:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			164 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			164 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # Go to repository root
 | |
| cd "$(dirname "$0")/.." || exit 2
 | |
| 
 | |
| echo "Start building with $(nproc) threads"
 | |
| make -C build -j$(nproc) config=release_x86 all
 |