9 lines
		
	
	
		
			169 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			169 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
cd `dirname $0`/..
 | 
						|
 | 
						|
mkdir -p build_neon
 | 
						|
cd build_neon
 | 
						|
 | 
						|
cmake -DANDROID_ABI="armeabi-v7a with NEON" -DCMAKE_TOOLCHAIN_FILE=../android.toolchain.cmake $@ ../..
 | 
						|
 |