| 
									
										
										
										
											2019-07-01 12:40:51 +02:00
										 |  |  | # - Try to find ed25519 include dirs and libraries
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | # Usage of this module as follows:
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | #     find_package(ed25519)
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | # Variables used by this module, they can change the default behaviour and need
 | 
					
						
							|  |  |  | # to be set before calling find_package:
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | #  ed25519_ROOT_DIR          Set this variable to the root installation of
 | 
					
						
							|  |  |  | #                            ed25519 if the module has problems finding the
 | 
					
						
							|  |  |  | #                            proper installation path.
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | # Variables defined by this module:
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | #  ed25519_FOUND             System has ed25519, include and library dirs found
 | 
					
						
							|  |  |  | #  ed25519_INCLUDE_DIR       The ed25519 include directories.
 | 
					
						
							|  |  |  | #  ed25519_LIBRARIES_STATIC  The ed25519 libraries.
 | 
					
						
							|  |  |  | #  ed25519_LIBRARIES_SHARED  The ed25519 libraries.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-02 02:23:51 +02:00
										 |  |  | include(tearoot-helper)
 | 
					
						
							|  |  |  | include(FindPackageHandleStandardArgs)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-01 12:40:51 +02:00
										 |  |  | find_path(ed25519_ROOT_DIR | 
					
						
							| 
									
										
										
										
											2019-07-02 02:23:51 +02:00
										 |  |  |         NAMES include/ed25519/ed25519
 | 
					
						
							|  |  |  | 		HINTS ${ed25519_ROOT_DIR} ${ed25519_ROOT_DIR}/${BUILD_OUTPUT}
 | 
					
						
							| 
									
										
										
										
											2019-07-01 12:40:51 +02:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | find_path(ed25519_INCLUDE_DIR | 
					
						
							|  |  |  |         NAMES ed25519/ed25519.h
 | 
					
						
							| 
									
										
										
										
											2019-07-02 02:23:51 +02:00
										 |  |  | 		HINTS ${ed25519_ROOT_DIR} ${ed25519_ROOT_DIR}/include/
 | 
					
						
							| 
									
										
										
										
											2019-07-01 12:40:51 +02:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | find_library(ed25519_LIBRARIES_STATIC | 
					
						
							| 
									
										
										
										
											2019-07-03 13:27:12 +02:00
										 |  |  |         NAMES ed25519.lib ed25519.a libed25519.a
 | 
					
						
							| 
									
										
										
										
											2019-07-02 02:23:51 +02:00
										 |  |  | 		HINTS ${ed25519_ROOT_DIR} ${ed25519_ROOT_DIR}/lib
 | 
					
						
							| 
									
										
										
										
											2019-07-01 12:40:51 +02:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | find_library(ed25519_LIBRARIES_SHARED | 
					
						
							|  |  |  |         NAMES ed25519.dll ed25519.so
 | 
					
						
							| 
									
										
										
										
											2019-07-02 02:23:51 +02:00
										 |  |  | 		HINTS ${ed25519_ROOT_DIR} ${ed25519_ROOT_DIR}/lib
 | 
					
						
							| 
									
										
										
										
											2019-07-01 12:40:51 +02:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | find_package_handle_standard_args(ed25519 DEFAULT_MSG | 
					
						
							|  |  |  |         ed25519_INCLUDE_DIR
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | mark_as_advanced( | 
					
						
							|  |  |  |         ed25519_ROOT_DIR
 | 
					
						
							|  |  |  |         ed25519_INCLUDE_DIR
 | 
					
						
							|  |  |  |         ed25519_LIBRARIES_STATIC
 | 
					
						
							|  |  |  |         ed25519_LIBRARIES_SHARED
 | 
					
						
							|  |  |  | )
 |