mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	externals: allow users to use system cpp-jwt libraries (#6976)
This commit is contained in:
		
							parent
							
								
									a35f8cbb78
								
							
						
					
					
						commit
						38f310f716
					
				
					 2 changed files with 10 additions and 3 deletions
				
			
		|  | @ -93,6 +93,7 @@ option(USE_SYSTEM_SDL2 "Use the system SDL2 lib (instead of the bundled one)" OF | ||||||
| option(USE_SYSTEM_BOOST "Use the system Boost libs (instead of the bundled ones)" OFF) | option(USE_SYSTEM_BOOST "Use the system Boost libs (instead of the bundled ones)" OFF) | ||||||
| option(USE_SYSTEM_OPENSSL "Use the system OpenSSL libs (instead of the bundled LibreSSL)" OFF) | option(USE_SYSTEM_OPENSSL "Use the system OpenSSL libs (instead of the bundled LibreSSL)" OFF) | ||||||
| option(USE_SYSTEM_LIBUSB "Use the system libusb (instead of the bundled libusb)" OFF) | option(USE_SYSTEM_LIBUSB "Use the system libusb (instead of the bundled libusb)" OFF) | ||||||
|  | option(USE_SYSTEM_CPP_JWT "Use the system cpp-jwt (instead of the bundled one)" OFF) | ||||||
| option(USE_SYSTEM_SOUNDTOUCH "Use the system SoundTouch (instead of the bundled one)" OFF) | option(USE_SYSTEM_SOUNDTOUCH "Use the system SoundTouch (instead of the bundled one)" OFF) | ||||||
| 
 | 
 | ||||||
| if (CITRA_USE_PRECOMPILED_HEADERS) | if (CITRA_USE_PRECOMPILED_HEADERS) | ||||||
|  |  | ||||||
							
								
								
									
										12
									
								
								externals/CMakeLists.txt
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								externals/CMakeLists.txt
									
										
									
									
										vendored
									
									
								
							|  | @ -210,9 +210,15 @@ endif() | ||||||
| 
 | 
 | ||||||
| # cpp-jwt | # cpp-jwt | ||||||
| if (ENABLE_WEB_SERVICE) | if (ENABLE_WEB_SERVICE) | ||||||
|     add_library(cpp-jwt INTERFACE) |     if (USE_SYSTEM_CPP_JWT) | ||||||
|     target_include_directories(cpp-jwt INTERFACE ./cpp-jwt/include) |         find_package(cpp-jwt REQUIRED) | ||||||
|     target_compile_definitions(cpp-jwt INTERFACE CPP_JWT_USE_VENDORED_NLOHMANN_JSON) |         add_library(cpp-jwt INTERFACE) | ||||||
|  |         target_link_libraries(cpp-jwt INTERFACE cpp-jwt::cpp-jwt) | ||||||
|  |     else() | ||||||
|  |         add_library(cpp-jwt INTERFACE) | ||||||
|  |         target_include_directories(cpp-jwt INTERFACE ./cpp-jwt/include) | ||||||
|  |         target_compile_definitions(cpp-jwt INTERFACE CPP_JWT_USE_VENDORED_NLOHMANN_JSON) | ||||||
|  |     endif() | ||||||
| endif() | endif() | ||||||
| 
 | 
 | ||||||
| # lodepng | # lodepng | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue