mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			239 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			239 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
cmake_minimum_required(VERSION 2.8)
 | 
						|
 | 
						|
project(Foo)
 | 
						|
 | 
						|
set(CMAKE_SKIP_RPATH TRUE)
 | 
						|
set(CMAKE_INSTALL_PREFIX "/usr/local")
 | 
						|
 | 
						|
add_subdirectory(bar)
 | 
						|
 | 
						|
add_executable(foo foo.c)
 | 
						|
target_link_libraries(foo pthread)
 | 
						|
install(TARGETS foo DESTINATION bin)
 |