mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-10-31 06:46:40 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			478 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			478 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # SPDX-FileCopyrightText: 2022 Alexandre Bouvier <contact@amb.tf>
 | |
| #
 | |
| # SPDX-License-Identifier: GPL-3.0-or-later
 | |
| 
 | |
| find_package(PkgConfig QUIET)
 | |
| pkg_search_module(INIREADER QUIET IMPORTED_TARGET INIReader)
 | |
| 
 | |
| include(FindPackageHandleStandardArgs)
 | |
| find_package_handle_standard_args(inih
 | |
|     REQUIRED_VARS INIREADER_LINK_LIBRARIES
 | |
|     VERSION_VAR INIREADER_VERSION
 | |
| )
 | |
| 
 | |
| if (inih_FOUND AND NOT TARGET inih::INIReader)
 | |
|     add_library(inih::INIReader ALIAS PkgConfig::INIREADER)
 | |
| endif()
 |