Benjamin Greiner
14b1fc6404
- Update to 2.6.1 * When renaming a preset to a name containing non-ASCII characters, the encoding was mangled. This is now fixed (#11232). * Supports are no longer shown when using the clipping plane in SLA supports tool. * Fixed a crash when displaying command line help (#11060). * Two tooltips in the Cut tool dialog were shown with mangled encoding in some languages (#11236). * The Help menu in PrusaSlicer was extended with "Sample G-codes and Models" item, which navigates the user to the respective page on our website where these assets can be downloaded. * The Help menu was extended with "Quick Start" item, which navigates the user to the beginner's guide on our website. - Drop PrusaSlicer-pr11154-fix-cgal-c++-error.patch - Drop PrusaSlicer-drop-wx3.0.patch OBS-URL: https://build.opensuse.org/request/show/1111613 OBS-URL: https://build.opensuse.org/package/show/science/PrusaSlicer?expand=0&rev=66
21 lines
687 B
Diff
21 lines
687 B
Diff
Index: PrusaSlicer-version_2.6.1/src/occt_wrapper/CMakeLists.txt
|
|
===================================================================
|
|
--- PrusaSlicer-version_2.6.1.orig/src/occt_wrapper/CMakeLists.txt
|
|
+++ PrusaSlicer-version_2.6.1/src/occt_wrapper/CMakeLists.txt
|
|
@@ -19,7 +19,7 @@ include(GenerateExportHeader)
|
|
|
|
generate_export_header(OCCTWrapper)
|
|
|
|
-find_package(OpenCASCADE 7.6.2 REQUIRED)
|
|
+find_package(OpenCASCADE REQUIRED)
|
|
|
|
set(OCCT_LIBS
|
|
TKXDESTEP
|
|
@@ -58,5 +58,5 @@ target_link_libraries(OCCTWrapper ${OCCT
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
-install(TARGETS OCCTWrapper DESTINATION "${CMAKE_INSTALL_BINDIR}")
|
|
+install(TARGETS OCCTWrapper DESTINATION "${CMAKE_INSTALL_LIBDIR}")
|
|
|