mirror of
				https://github.com/PaddlePaddle/PaddleOCR.git
				synced 2025-10-31 09:49:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			392 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			392 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| find_package(Git REQUIRED)
 | |
| include(FetchContent)
 | |
| 
 | |
| set(FETCHCONTENT_BASE_DIR "${CMAKE_CURRENT_BINARY_DIR}/third-party")
 | |
| 
 | |
| FetchContent_Declare(
 | |
|   extern_Autolog
 | |
|   PREFIX autolog
 | |
|   # If you don't have access to github, replace it with https://gitee.com/Double_V/AutoLog
 | |
|   GIT_REPOSITORY https://github.com/LDOUBLEV/AutoLog.git
 | |
|   GIT_TAG        main
 | |
| )
 | |
| FetchContent_MakeAvailable(extern_Autolog)
 | |
| 
 | 
