Each monitor 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.
		
			
				
	
	
		
			6 lines
		
	
	
		
			211 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			211 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
add_library(mysqlmon SHARED mysql_mon.c)
 | 
						|
target_link_libraries(mysqlmon maxscale-common)
 | 
						|
add_dependencies(mysqlmon pcre2)
 | 
						|
set_target_properties(mysqlmon PROPERTIES VERSION "1.4.0")
 | 
						|
install_module(mysqlmon core)
 |