Each protocol module now resides in a subdirectory of its own. The name of the subdirectory is the same as the name of the library in the module's CMakeLists.txt file.
		
			
				
	
	
		
			5 lines
		
	
	
		
			162 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
		
			162 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
add_library(HTTPD SHARED httpd.c)
 | 
						|
target_link_libraries(HTTPD maxscale-common)
 | 
						|
set_target_properties(HTTPD PROPERTIES VERSION "1.0.1")
 | 
						|
install_module(HTTPD core)
 |