mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 01:05:48 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			174 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			174 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#! /bin/bash -e
 | 
						|
 | 
						|
mkdir cmakebuild
 | 
						|
cd cmakebuild
 | 
						|
cmake -DCMAKE_BUILD_TYPE=Debug \
 | 
						|
	-DRUN_IN_PLACE=TRUE -DENABLE_GETTEXT=TRUE \
 | 
						|
	-DBUILD_SERVER=TRUE ${CMAKE_FLAGS} ..
 | 
						|
make -j2
 |