mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			226 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			226 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh -ex
 | |
| 
 | |
| export CC="$_CC"
 | |
| export CXX="$_CXX"
 | |
| 
 | |
| if [ -n "$SANITIZE" ]; then
 | |
| 	export CXXFLAGS="-fsanitize=$SANITIZE"
 | |
| 	BUILD_TYPE="Debug"
 | |
| else
 | |
| 	BUILD_TYPE="Release"
 | |
| fi
 | |
| 
 | |
| cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .
 | |
| cmake --build .
 |