supermerill 5870c4d780 merge fixes from 2.5.60 to 2.7 6 days ago
..
+Blosc 2e4ce6e283 Working cross builds on Mac for deps 1 year ago
+Boost 0d32829914 Fix missing boost dependency on zlib 1 year ago
+CGAL 2e4ce6e283 Working cross builds on Mac for deps 1 year ago
+CURL 3fba2bc140 Dependency update with simplified cmake code 1 year ago
+Catch2 3fba2bc140 Dependency update with simplified cmake code 1 year ago
+Cereal 3fba2bc140 Dependency update with simplified cmake code 1 year ago
+EXPAT 3fba2bc140 Dependency update with simplified cmake code 1 year ago
+GLEW 03451c39e2 Followup fully converted deps to new system 1 year ago
+GMP b860f4d25c Merge with prusaslicer 2.7 rc2 11 months ago
+JPEG 793e9f08fc Update JPEG, PNG, TIFF to build mac-universal 1 year ago
+LibBGCode 2e8ec7e63e Update cmake file to download latest version of libbgcode library 9 months ago
+MPFR 2e4ce6e283 Working cross builds on Mac for deps 1 year ago
+NLopt 03451c39e2 Followup fully converted deps to new system 1 year ago
+NanoSVG 3fba2bc140 Dependency update with simplified cmake code 1 year ago
+OCCT 2e4ce6e283 Working cross builds on Mac for deps 1 year ago
+OpenCSG 79b86abebf Fix inconsistent option variable names in deps 1 year ago
+OpenEXR b860f4d25c Merge with prusaslicer 2.7 rc2 11 months ago
+OpenSSL 1772bc2fcc Fix OpenSSL 1 year ago
+OpenVDB 9e6d58861f Switch OpenVDB repository to prusa3d 11 months ago
+PNG b860f4d25c Merge with prusaslicer 2.7 rc2 11 months ago
+Qhull 61c883b6c9 update qhull 1 year ago
+TBB 4cb5e6f57f Add possibility to build shared libs 1 year ago
+ZLIB 3fba2bc140 Dependency update with simplified cmake code 1 year ago
+heatshrink ce5f1951ce upgrade heatshrink cmake file 1 year ago
+wxWidgets 6a46fc69b6 Removed dependency on libtiff 3 months ago
Qhull b860f4d25c Merge with prusaslicer 2.7 rc2 11 months ago
CMakeLists.txt 5870c4d780 merge fixes from 2.5.60 to 2.7 6 days ago
CMakePresets.json 96c1a69aae Fix debug build and remove platform detection wizardry in presets 1 year ago
README.md 92c4fd41bf Add readme to deps 1 year ago
autobuild.cmake 0436acc7d9 Add presets and deps autobuild 1 year ago

README.md

PrusaSlicer dependencies

This folder is a top level CMake project to build the dependent libraries for PrusaSlicer. It can be configured and built in the standard CMake way using the commands:

cmake .. 
cmake --build .

Each dependency is specified in a separate folder prefixed with the + sign. The underlying framework to download and build external projects is CMake's ExternalProject module. No other tool (e.g. Python) is involved in the process. All the standard CMake switches work as expected, -G for alternative build file generators like Ninja or Visual Studio projects. Important toolchain configuration variables are forwarded to each package build script if they happen to be CMake based. Otherwise they are forwarded to the appropriate build system of a particular library package.

A note about build configurations on MSVC

To build PrusaSlicer in different configurations with a Visual Studio toolchain, it is necessary to also build the dependencies in the appropriate configurations. As MSVC runtimes are not compatible between different build configurations, it's not possible to link a library built in Release mode to PrusaSlicer being built in Debug mode. This fact applies to all libraries except those with proper C linkage and interface lacking any STL container (e.g. ZLIB). Many of the dependent libraries don't fall into this cathegory thus they need to be built twice: in Release and Debug versions.

The DEP_DEBUG flag is used to specify if Debug versions of the affected libraries will be built. If an MSVC toochain is used, this flag is ON by default and OFF for any other platform and compiler suite.

Note that it's not necessary to build the dependencies for each CMake build configuration (e.g. RelWithDebInfo). When PrusaSlicer is built in such a configuration, a pure Debug or Release build of dependencies will be compatible with the main project. CMake should automatically choose the right configuration of the dependencies in such cases. This may not work in all cases (see https://stackoverflow.com/questions/24262081/cmake-relwithdebinfo-links-to-debug-libs).

Automatic dependency build while configuring PrusaSlicer

It is possible build the dependencies while configuring the main PrusaSlicer project. To invoke this feature, configure PrusaSlicer with the -DPrusaSlicer_BUILD_DEPS:BOOL=ON flag. All the necessary arguments will be forwarded to the dependency build and the paths to finding the libraries (CMAKE_PREFIX_PATH) will automatically be set for the main project.

All that needs to be done to build the whole PrusaSlicer project from scratch is to use the command

cmake --preset default -DPrusaSlicer_BUILD_DEPS:BOOL=ON

in the top level source directory. This method makes use of presets which are a relatively new feature of CMake. To list the current available presets, use the

cmake --list-presets

command in the source directory where a CMakePresets.json file is available.