mirror of
				https://github.com/falk-werner/webfuse
				synced 2025-06-13 12:54:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			319 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			319 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
. DoBuildFiles/generic.properties
 | 
						|
. DoBuildFiles/cmake.properties
 | 
						|
 | 
						|
[ -z "$VERBOSE" ] || set -x
 | 
						|
 | 
						|
exec "$DOBUILDDIR/bin/tar_cc_settings" \
 | 
						|
  --project-root "$PROJECTDIR" \
 | 
						|
  --build-system "cmake-${CMAKE_GENERATOR_NAME}" \
 | 
						|
  --include-prefix "$TARGET/DoBuildFiles" \
 | 
						|
  compile_commands.json \
 | 
						|
  CMakeCache.txt
 |