mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 01:05:48 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			268 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			268 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#! /bin/bash -e
 | 
						|
 | 
						|
cmake -B build \
 | 
						|
	-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE:-Debug} \
 | 
						|
	-DRUN_IN_PLACE=TRUE \
 | 
						|
	-DENABLE_GETTEXT=${CMAKE_ENABLE_GETTEXT:-TRUE} \
 | 
						|
	-DBUILD_SERVER=${CMAKE_BUILD_SERVER:-TRUE} \
 | 
						|
	${CMAKE_FLAGS}
 | 
						|
 | 
						|
cmake --build build --parallel $(($(nproc) + 1))
 |