10 lines
		
	
	
		
			230 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			230 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
include(FetchContent)
 | 
						|
FetchContent_Declare(
 | 
						|
  spdlog
 | 
						|
  GIT_REPOSITORY http://212.129.155.29:3000/gitMirror/spdlog.git
 | 
						|
  SOURCE_DIR	 ${CMAKE_CURRENT_SOURCE_DIR}/external/spdlog
 | 
						|
  GIT_TAG		main
 | 
						|
)
 | 
						|
 | 
						|
FetchContent_MakeAvailable(spdlog)
 |