Downloading and building integration libraries
Guide how to download and build integration libraries for the Magnum engine.
Contents
The integration repository provides integration of various math and physics libraries with Magnum engine. They are not needed for essential usage, but it might get handy if you want to use something other than builtin components and seamlessly integrate them with the rest of the engine.
Prepared packages
The easiest way to install Magnum Integration is to use one of the ready-made packages for your platform of choice. See Manual build if you want to have more control. Cross-compiling is very similar to cross-compiling of Magnum itself.
- Vcpkg packages on Windows
- ArchLinux packages
- Packages for Debian, Ubuntu and derivatives
- Gentoo Linux ebuilds
- Homebrew formulas for macOS
Vcpkg packages on Windows
Magnum Integration libraries are available as a Vcpkg package. After setting up Vcpkg like described in the README, you can install latest stable version of Magnum Integration with all its dependencies like this:
vcpkg install magnum-integration
But often you may want to install the latest Git revision of all Magnum projects instead:
vcpkg install corrade --head vcpkg install magnum --head vcpkg install magnum-integration --head
This by default installs a 32-bit dynamic version of the package, you can use vcpkg install magnum-integration:x64-windows
or vcpkg install magnum-integration:x64-windows-static
to install a 64-bit (static) version instead. You can also use the VCPKG_DEFAULT_TRIPLET
variable to change the default — see the Vcpkg triplet documentation for more information.
Note that just a subset of integration libraries is installed by default. To opt-in or opt-out of additional features, you can use the following syntax; feature names are simply names of CMake WITH_*
options from the Enabling or disabling features section but lowercase. See the feature documentation for more information.
vcpkg install magnum-integration[bullet]
Packages installed using Vcpkg can be used straight away in Visual Studio — all you need to do is to #include
the headers you want, the buildsystem will do all needed library linking and setup behind the scenes automatically. (Cool, isn't it?)
In order to make Magnum projects installed using Vcpkg available to CMake-based projects, specify the Vcpkg toolchain file on the command line when invoking CMake in a fresh build directory, for example:
mkdir build && cd build cmake .. -DCMAKE_TOOLCHAIN_FILE=C:/src/vcpkg/scripts/buildsystems/vcpkg.cmake
If you want to pass additional flags to CMake, run vcpkg edit magnum-integration
and edit OPTIONS
in vcpkg_configure_cmake()
.
There are also Vcpkg packages for Magnum Plugins and Magnum Extras.
ArchLinux packages
In package/archlinux/magnum-integration-git
there is a package for Git development build. The package is also in AUR as magnum-integration-git. It depends on Corrade and Magnum ArchLinux packages.
There are also a few development packages for native builds, cross-compilation for Emscripten, Android and MinGW or various sanitizer/coverage builds. See the PKGBUILD files in the package/archlinux
directory. They allow you to build and install the package directly from source tree. Example usage:
git clone git://github.com/mosra/magnum-integration && cd magnum-integration cd package/archlinux makepkg -fp PKGBUILD # or any other PKGBUILD file
In most cases the development PKGBUILDs also contain a check()
function which will run all unit tests before packaging. That might sometimes fail or take too long, pass --nocheck
to makepkg
to skip that.
Once built, install the package using pacman
:
sudo pacman -U magnum-integration-*.pkg.tar.xz
Edit the PKGBUILDs if you want to pass additional flags to CMake or enable / disable additional features.
There are also ArchLinux packages for Magnum Plugins, Magnum Extras and Magnum Examples.
Packages for Debian, Ubuntu and derivatives
The package/debian/
directory contains all files needed for building Debian packages. You need the Corrade and Magnum Debian packages installed and in addition also the dpkg-dev
and debhelper
packages. Building is easy, just change directory to package root, link or copy the package/debian
directory there and run dpkg-buildpackage
:
git clone git://github.com/mosra/magnum-integration && cd magnum-integration ln -s package/debian . dpkg-buildpackage
This will compile binary and development packages, which will then appear in parent directory. Install them using dpkg
:
sudo dpkg -i ../magnum-integration*.deb
If you want to pass additional flags to CMake or enable / disable additional features, add them to dh_auto_configure
at the bottom of debian/rules
. Watch out, as indentation has to be done using tabs, not spaces.
There are also Debian packages for Magnum Plugins, Magnum Extras and Magnum Examples.
Gentoo Linux ebuilds
Gentoo Git ebuild is available in the package/gentoo
directory. Get the Corrade and Magnum Gentoo packages first and then build and install Magnum Integration like this:
git clone git://github.com/mosra/magnum-integration && cd magnum-integration cd package/gentoo sudo ebuild dev-libs/magnum-integration/magnum-integration-99999.ebuild manifest clean merge
If you want to pass additional flags to CMake or enable / disable additional features, add them to mycmakeargs
in the *.ebuild
file.
There are also Gentoo packages for Magnum Plugins, Magnum Extras and Magnum Examples.
Homebrew formulas for macOS
macOS Homebrew formulas building the latest Git revision are in the package/homebrew
directory. Either use the *.rb
files directly or use the tap at https:/
brew install mosra/magnum/magnum-integration
But often you may want to install the latest Git revision of all Magnum projects instead:
brew install --HEAD mosra/magnum/corrade brew install --HEAD mosra/magnum/magnum brew install --HEAD mosra/magnum/magnum-integration
When installing from the *.rb
files you need to install the Corrade and Magnum Homebrew packages first. If you want to pass additional flags to CMake or enable / disable additional features, edit the *.rb
file.
There are also Homebrew packages for Magnum Plugins, Magnum Extras and Magnum Examples.
Manual build
The source is available on GitHub: https:/
Enabling or disabling features
Similarly to Magnum, the libraries are build as shared by default. If you are developing for a platform which doesn't support shared libraries or if you just want to link them statically, enable BUILD_STATIC
to build the libraries as static. If you plan to use them with shared libraries later, enable also position-independent code with BUILD_STATIC_PIC
.
Libraries built in the Debug
configuration (e.g. with CMAKE_BUILD_TYPE
set to Debug
) have a -d
suffix, similarly to what is done when building Magnum itself.
By default no integration libraries are built and you need to select them manually:
WITH_BULLET
— Build the BulletIntegration library. Depends on Bullet Physics.WITH_DART
– Build the DartIntegration library. Depends on DART.WITH_OVR
— Build the OvrIntegration library. Depends on the Oculus SDK.
Note that each *Integration namespace documentation contains more detailed information about its dependencies, availability on particular platforms and also a guide how to enable given library for building and hot to use it with CMake.
Building documentation
The documentation for integration libraries is built as part of of the main Magnum documentation. Clone the projects next to each other and continue as described in Building documentation.
Continuous Integration
Travis
In package/ci/
there is a travis.yml
file with Linux GCC 4.7, macOS, Linux desktop GLES2/GLES3, iOS GLES2/GLES3, Emscripten WebGL1/WebGL2, Android GLES2/GLES3, AddressSanitizer and ThreadSanitizer configuration. Online at https:/
AppVeyor
In package/ci/
there is an appveyor.yml
file with Windows desktop MSVC, MinGW, Windows desktop GLES2/GLES3 and Windows RT GLES2/GLES3 configuration. Online at https:/
Codecov.io
Linux, Linux GLES, macOS and Windows MinGW builds contribute to a combined code coverage report, available online at https:/