mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 04:46:15 +01:00 
			
		
		
		
	Do not exporting mysqld entry points directly. This is needed for mariabackup, to load encryption plugins on Windows. All plugins are "pure" by default. To mark plugin "impure" it should use RECOMPILE_FOR_EMBEDDED or STORAGE_ENGINE keyword.
		
			
				
	
	
		
			5 lines
		
	
	
	
		
			195 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
	
		
			195 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
IF (WITH_WSREP)
 | 
						|
  INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/sql
 | 
						|
                      ${CMAKE_SOURCE_DIR}/wsrep)
 | 
						|
  MYSQL_ADD_PLUGIN(WSREP_INFO plugin.cc MODULE_ONLY RECOMPILE_FOR_EMBEDDED)
 | 
						|
ENDIF()
 |