mirror of
				https://gitee.com/jiuyilian/embedded-framework.git
				synced 2025-10-24 18:20:15 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			230 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			230 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
enable_testing()
 | 
						|
 | 
						|
cmake_minimum_required(VERSION 3.13)
 | 
						|
 | 
						|
# set the project name
 | 
						|
project(httpserver.h)
 | 
						|
 | 
						|
add_subdirectory(src)
 | 
						|
 | 
						|
add_subdirectory(test/unit)
 | 
						|
add_subdirectory(test/functional)
 | 
						|
 | 
						|
add_test(NAME Unit COMMAND httpsrv-unit)
 | 
						|
 |