mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-03 17:24:29 +00:00 
			
		
		
		
	Ensure bundled libraries and include directories are always searched first before any others. This will provide a more consistent experience as the search order of the builtin find_ functions can vary depending on system. This should make the build process faster when building with bundled deps as we limit the search to only the .deps directory. Separating the search between .deps and everything makes debugging find_-related problems simpler if you need to check how dependencies are found. For libraries, we divide the search process into the following order: 1. Only search in .deps directory and only search for static libraries. 2. Only search in .deps directory and search for all libraries. 3. Search everywhere and search for all libraries. Make an exception for FindLibintl.cmake as changing the search order seems to break some tests on macos.
		
			
				
	
	
		
			12 lines
		
	
	
		
			435 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			435 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
find_path2(UNIBILIUM_INCLUDE_DIR unibilium.h)
 | 
						|
find_library2(UNIBILIUM_LIBRARY unibilium)
 | 
						|
 | 
						|
find_package_handle_standard_args(Unibilium
 | 
						|
  REQUIRED_VARS UNIBILIUM_INCLUDE_DIR UNIBILIUM_LIBRARY)
 | 
						|
 | 
						|
add_library(unibilium INTERFACE)
 | 
						|
target_include_directories(unibilium SYSTEM BEFORE INTERFACE ${UNIBILIUM_INCLUDE_DIR})
 | 
						|
target_link_libraries(unibilium INTERFACE ${UNIBILIUM_LIBRARY})
 | 
						|
 | 
						|
mark_as_advanced(UNIBILIUM_INCLUDE_DIR UNIBILIUM_LIBRARY)
 |