You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							21 lines
						
					
					
						
							554 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							21 lines
						
					
					
						
							554 B
						
					
					
				
								# Try to find the GNU Multiple Precision Arithmetic Library (GMP)
							 | 
						|
								# See http://gmplib.org/
							 | 
						|
								
							 | 
						|
								if (GMP_INCLUDES AND GMP_LIBRARIES)
							 | 
						|
								  set(GMP_FIND_QUIETLY TRUE)
							 | 
						|
								endif (GMP_INCLUDES AND GMP_LIBRARIES)
							 | 
						|
								
							 | 
						|
								find_path(GMP_INCLUDES
							 | 
						|
								  NAMES
							 | 
						|
								  gmp.h
							 | 
						|
								  PATHS
							 | 
						|
								  $ENV{GMPDIR}
							 | 
						|
								  ${INCLUDE_INSTALL_DIR}
							 | 
						|
								)
							 | 
						|
								
							 | 
						|
								find_library(GMP_LIBRARIES gmp PATHS $ENV{GMPDIR} ${LIB_INSTALL_DIR})
							 | 
						|
								
							 | 
						|
								include(FindPackageHandleStandardArgs)
							 | 
						|
								find_package_handle_standard_args(GMP DEFAULT_MSG
							 | 
						|
								                                  GMP_INCLUDES GMP_LIBRARIES)
							 | 
						|
								mark_as_advanced(GMP_INCLUDES GMP_LIBRARIES)
							 |