The devel package was missing the protocol/mysql.h-file. Also, added copyright and licence files and a devel-specific description. The package target is now checked to be one of the recognized ones.
		
			
				
	
	
		
			6 lines
		
	
	
		
			193 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			193 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
file(GLOB HEADERS "*.h*")
 | 
						|
foreach(var ${HEADERS})
 | 
						|
  get_filename_component(header ${var} NAME)
 | 
						|
  install_custom_file(${header} ${CMAKE_INSTALL_INCLUDEDIR}/maxscale/protocol devel)
 | 
						|
endforeach()
 |