mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	externals: allow user to use system Catch2 (#7190)
This commit is contained in:
		
							parent
							
								
									2a4c60c1dd
								
							
						
					
					
						commit
						ba702043f0
					
				
					 3 changed files with 13 additions and 4 deletions
				
			
		
							
								
								
									
										12
									
								
								externals/CMakeLists.txt
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								externals/CMakeLists.txt
									
										
									
									
										vendored
									
									
								
							|  | @ -41,9 +41,15 @@ else() | |||
| endif() | ||||
| 
 | ||||
| # Catch2 | ||||
| set(CATCH_INSTALL_DOCS OFF CACHE BOOL "") | ||||
| set(CATCH_INSTALL_EXTRAS OFF CACHE BOOL "") | ||||
| add_subdirectory(catch2) | ||||
| add_library(catch2 INTERFACE) | ||||
| if(USE_SYSTEM_CATCH2) | ||||
|     find_package(Catch2 3.0.0 REQUIRED) | ||||
| else() | ||||
|     set(CATCH_INSTALL_DOCS OFF CACHE BOOL "") | ||||
|     set(CATCH_INSTALL_EXTRAS OFF CACHE BOOL "") | ||||
|     add_subdirectory(catch2) | ||||
| endif() | ||||
| target_link_libraries(catch2 INTERFACE Catch2::Catch2WithMain) | ||||
| 
 | ||||
| # Crypto++ | ||||
| if(USE_SYSTEM_CRYPTOPP) | ||||
|  |  | |||
|  | @ -25,6 +25,7 @@ option(USE_SYSTEM_LODEPNG "Use the system lodepng (instead of the bundled one)" | |||
| option(USE_SYSTEM_OPENAL "Use the system OpenAL (instead of the bundled one)" OFF) | ||||
| option(USE_SYSTEM_VMA "Use the system VulkanMemoryAllocator (instead of the bundled one)" OFF) | ||||
| option(USE_SYSTEM_VULKAN_HEADERS "Use the system Vulkan headers (instead of the bundled ones)" OFF) | ||||
| option(USE_SYSTEM_CATCH2 "Use the system Catch2 (instead of the bundled one)" OFF) | ||||
| 
 | ||||
| # Qt and MoltenVK are handled separately | ||||
| CMAKE_DEPENDENT_OPTION(DISABLE_SYSTEM_SDL2 "Disable system SDL2" OFF "USE_SYSTEM_LIBS" OFF) | ||||
|  | @ -49,6 +50,7 @@ CMAKE_DEPENDENT_OPTION(DISABLE_SYSTEM_LODEPNG "Disable system lodepng" OFF "USE_ | |||
| CMAKE_DEPENDENT_OPTION(DISABLE_SYSTEM_OPENAL "Disable system OpenAL" OFF "USE_SYSTEM_LIBS" OFF) | ||||
| CMAKE_DEPENDENT_OPTION(DISABLE_SYSTEM_VMA "Disable system VulkanMemoryAllocator" OFF "USE_SYSTEM_LIBS" OFF) | ||||
| CMAKE_DEPENDENT_OPTION(DISABLE_SYSTEM_VULKAN_HEADERS "Disable system Vulkan headers" OFF "USE_SYSTEM_LIBS" OFF) | ||||
| CMAKE_DEPENDENT_OPTION(DISABLE_SYSTEM_CATCH2 "Disable system Catch2" OFF "USE_SYSTEM_LIBS" OFF) | ||||
| 
 | ||||
| set(LIB_VAR_LIST | ||||
|     SDL2 | ||||
|  | @ -73,6 +75,7 @@ set(LIB_VAR_LIST | |||
|     OPENAL | ||||
|     VMA | ||||
|     VULKAN_HEADERS | ||||
|     CATCH2 | ||||
|     ) | ||||
| 
 | ||||
| # First, check that USE_SYSTEM_XXX is not used with USE_SYSTEM_LIBS | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue