mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-11-02 20:51:23 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			No EOL
		
	
	
		
			551 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			No EOL
		
	
	
		
			551 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
if(BUILD_SHARED_LIBS)
 | 
						|
    set(_build_shared ON)
 | 
						|
    set(_build_static OFF)
 | 
						|
else()
 | 
						|
    set(_build_shared OFF)
 | 
						|
    set(_build_static ON)
 | 
						|
endif()
 | 
						|
 | 
						|
bambustudio_add_cmake_project(GLFW
 | 
						|
    URL https://github.com/glfw/glfw/archive/refs/tags/3.3.7.zip
 | 
						|
    URL_HASH SHA256=e02d956935e5b9fb4abf90e2c2e07c9a0526d7eacae8ee5353484c69a2a76cd0
 | 
						|
    #DEPENDS dep_Boost
 | 
						|
    CMAKE_ARGS
 | 
						|
        -DBUILD_SHARED_LIBS=${_build_shared} 
 | 
						|
        -DGLFW_BUILD_DOCS=OFF
 | 
						|
        -DGLFW_BUILD_EXAMPLES=OFF
 | 
						|
		-DGLFW_BUILD_TESTS=OFF
 | 
						|
)
 | 
						|
 | 
						|
if (MSVC)
 | 
						|
    add_debug_dep(dep_GLFW)
 | 
						|
endif () |