mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 00:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
set -xe
 | 
						|
 | 
						|
# Creating build directory...
 | 
						|
mkdir -p build
 | 
						|
cd build
 | 
						|
 | 
						|
# Running CMake...
 | 
						|
cmake ../
 | 
						|
 | 
						|
# Building with $NPROC CPU...
 | 
						|
make -j $NPROC
 |