mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-14 13:02:39 -07:00
28 lines
711 B
CMake
28 lines
711 B
CMake
if(BUILD_SHARED_LIBS)
|
|
set(_build_shared ON)
|
|
set(_build_static OFF)
|
|
else()
|
|
set(_build_shared OFF)
|
|
set(_build_static ON)
|
|
endif()
|
|
|
|
set(_glfw_platform_args "")
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
set(_glfw_platform_args -DGLFW_BUILD_WAYLAND=ON -DGLFW_BUILD_X11=ON)
|
|
endif()
|
|
|
|
orcaslicer_add_cmake_project(GLFW
|
|
URL https://github.com/glfw/glfw/archive/refs/tags/3.4.zip
|
|
URL_HASH SHA256=a133ddc3d3c66143eba9035621db8e0bcf34dba1ee9514a9e23e96afd39fd57a
|
|
CMAKE_ARGS
|
|
-DBUILD_SHARED_LIBS=${_build_shared}
|
|
-DGLFW_BUILD_DOCS=OFF
|
|
-DGLFW_BUILD_EXAMPLES=OFF
|
|
-DGLFW_BUILD_TESTS=OFF
|
|
${_glfw_platform_args}
|
|
)
|
|
|
|
if (MSVC)
|
|
add_debug_dep(dep_GLFW)
|
|
endif ()
|