You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			403 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			403 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
IF ("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_LESS "2.8.7")
 | 
						|
  FUNCTION(MESSAGE_ONCE id out)
 | 
						|
    MESSAGE(STATUS "${out}")
 | 
						|
  ENDFUNCTION()
 | 
						|
ELSE()
 | 
						|
  FUNCTION(MESSAGE_ONCE id out)
 | 
						|
    STRING(MD5 hash "${out}")
 | 
						|
    IF(NOT __msg1_${id} STREQUAL "${hash}")
 | 
						|
      MESSAGE(STATUS "${out}")
 | 
						|
    ENDIF()
 | 
						|
    SET(__msg1_${id} ${hash} CACHE INTERNAL "")
 | 
						|
  ENDFUNCTION()
 | 
						|
ENDIF()
 | 
						|
 |