| 
									
										
										
										
											2019-07-01 12:40:51 +02:00
										 |  |  | # - Try to find tommath include dirs and libraries
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | # Usage of this module as follows:
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | #     find_package(TomMath)
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | # Variables used by this module, they can change the default behaviour and need
 | 
					
						
							|  |  |  | # to be set before calling find_package:
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | #  TomMath_ROOT_DIR          Set this variable to the root installation of
 | 
					
						
							|  |  |  | #                            TomMath if the module has problems finding the
 | 
					
						
							|  |  |  | #                            proper installation path.
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | # Variables defined by this module:
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | #  TomMath_FOUND             System has TomMath, include and library dirs found
 | 
					
						
							|  |  |  | #  TomMath_INCLUDE_DIR       The TomMath include directories.
 | 
					
						
							|  |  |  | #  TomMath_LIBRARIES_STATIC  The TomMath libraries.
 | 
					
						
							|  |  |  | #  TomMath_LIBRARIES_SHARED  The TomMath libraries.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-02 02:23:51 +02:00
										 |  |  | include(tearoot-helper)
 | 
					
						
							|  |  |  | include(FindPackageHandleStandardArgs)
 | 
					
						
							| 
									
										
										
										
											2019-07-01 12:40:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | find_path(TomMath_INCLUDE_DIR | 
					
						
							|  |  |  |         NAMES tommath.h tommath_private.h
 | 
					
						
							| 
									
										
										
										
											2019-07-02 02:23:51 +02:00
										 |  |  | 		HINTS ${TomMath_ROOT_DIR}/ ${TomMath_ROOT_DIR}/include/
 | 
					
						
							| 
									
										
										
										
											2019-07-01 12:40:51 +02:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | find_library(TomMath_LIBRARIES_STATIC | 
					
						
							| 
									
										
										
										
											2019-07-06 21:47:32 +02:00
										 |  |  |         NAMES tommathStatic.lib tommath.lib tommath.a libtommath.a libtommathStatic.a
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:27:12 +02:00
										 |  |  | 		HINTS ${TomMath_ROOT_DIR} ${TomMath_ROOT_DIR}/${BUILD_OUTPUT} ${TomMath_ROOT_DIR}/lib
 | 
					
						
							| 
									
										
										
										
											2019-07-01 12:40:51 +02:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | find_library(TomMath_LIBRARIES_SHARED | 
					
						
							| 
									
										
										
										
											2019-07-03 13:27:12 +02:00
										 |  |  |         NAMES tommath.dll libtommath.so tommath.so libtommathShared.so
 | 
					
						
							|  |  |  | 		HINTS ${TomMath_ROOT_DIR} ${TomMath_ROOT_DIR}/${BUILD_OUTPUT} ${TomMath_ROOT_DIR} ${TomMath_ROOT_DIR}/lib
 | 
					
						
							| 
									
										
										
										
											2019-07-01 12:40:51 +02:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | find_package_handle_standard_args(TomMath DEFAULT_MSG | 
					
						
							|  |  |  |         TomMath_INCLUDE_DIR
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | mark_as_advanced( | 
					
						
							|  |  |  |         TomMath_ROOT_DIR
 | 
					
						
							|  |  |  |         TomMath_INCLUDE_DIR
 | 
					
						
							|  |  |  |         TomMath_LIBRARIES_STATIC
 | 
					
						
							|  |  |  |         TomMath_LIBRARIES_SHARED
 | 
					
						
							|  |  |  | )
 |