- add no-static.patch:
disable all static libraries
- Update to 3.6.1:
- Changes
- Updated CMake minimum version to 3.14 (GitHub #1349)
- Updated documentation regarding external dependencies (GitHub
#1346 #1360)
- Updated API and example documentation (GitHub #1351 #1362)
- Updated build_osd.py visual studio discovery and dependent
package versions (GitHub #1333 #1354 #1361)
- Updated azure pipelines agents (GitHub #1337 #1342 #1355
#1361)
- Updated use of OpenCL in example viewers (GitHub #1357)
- Addressed Clang 16 compiler warnings (GitHub #1356)
- Addressed some address sanitizer build warnings (GitHub
#1343)
- Added configuration options to build Osd patch shader source
independent of other Osd dependencies (GitHub #1359 #1363)
- Bug Fixes
- Fixed evaluation of surface patches at valence-2 darts
(GitHub #1336)
- Fixed sharpening of vertices on potential non-manifold
creases (GitHub #1338)
- Fixed sharing of Bfr::Surface topology with valence-2
interior vertices (GitHub #1353)
OBS-URL: https://build.opensuse.org/package/show/graphics/OpenSubdiv?expand=0&rev=18
22 lines
925 B
Diff
22 lines
925 B
Diff
--- a/CMakeLists.txt.orig 2020-07-06 14:18:27.124647948 +0000
|
|
+++ b/CMakeLists.txt 2020-07-06 15:59:37.934312924 +0000
|
|
@@ -132,18 +132,6 @@
|
|
endif()
|
|
|
|
|
|
-if (NOT CMAKE_COMPILER_IS_ICC)
|
|
- # Currently icc has a bug that asserts when linking rpaths containing long
|
|
- # sequences of ':' that this command causes. The consequence is that examples
|
|
- # built and installed using icc will not have an rpath pointing to the built
|
|
- # OSD library which they depend on and will have to set LD_LIBRARY_PATH instead.
|
|
- list(APPEND CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
|
|
-endif()
|
|
-
|
|
-# add the automatically determined parts of the RPATH
|
|
-# which point to directories outside the build tree to the install RPATH
|
|
-SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
-
|
|
# ensure that ARC is shown as enabled in the Xcode UI
|
|
if(CMAKE_GENERATOR STREQUAL "Xcode")
|
|
set (CMAKE_XCODE_ATTRIBUTE_CLANG_ENABLE_OBJC_ARC "YES")
|