Usage with CMake
Guide how to find and use Magnum with CMake build system.
Contents
Magnum uses CMake build system for both building and integration into your projects. The logic is in module FindMagnum.cmake
distributed with the engine in modules/
directory, you are encouraged to copy it along with FindCorrade.cmake
into your project and add path to the files to CMAKE_MODULE_PATH
. Otherwise, if CMake won't be able to find this file in predefined locations, it will error out even if Magnum might be installed on the system. If you plan to use Magnum on OpenGL ES, you may also need FindOpenGLES2.cmake
or FindOpenGLES3.cmake
and in some cases also FindEGL.cmake
.
Note that the module files are updated as the library evolves, you are encouraged to update your copies from time to time to avoid strange building issues.
If you installed the library or its dependencies to non-standard location (other than /usr
, e.g. /home/xyz/projects
), set CMAKE_PREFIX_PATH
to that directory to help CMake find it. You can enter more different dirs if you separate them with semicolons.
Basic usage is:
find_package(Magnum REQUIRED)
This module tries to find base Magnum library and then defines:
Magnum_FOUND
— Whether the library was foundMagnum::Magnum
— Base library imported targetMAGNUM_DEPLOY_PREFIX
— Prefix where to put final application executables, defaults to.
. If a relative path is used, it's relative toCMAKE_INSTALL_PREFIX
.MAGNUM_INCLUDE_INSTALL_PREFIX
— Prefix where to put platform-independent include and other files, defaults to.
. If a relative path is used, it's relative toCMAKE_INSTALL_PREFIX
.MAGNUM_PLUGINS_DEBUG_DIR
— Base directory with dynamic plugins for debug builds, defaults tomagnum-d/
subdirectory of dir where Magnum library was foundMAGNUM_PLUGINS_RELEASE_DIR
— Base directory with dynamic plugins for release builds, defaults tomagnum/
subdirectory of dir where Magnum library was foundMAGNUM_PLUGINS_DIR
— Base directory with dynamic plugins, defaults toMAGNUM_PLUGINS_RELEASE_DIR
in release builds and multi-configuration builds or toMAGNUM_PLUGINS_DEBUG_DIR
in debug builds. You can modify all three variable (e.g. set them to.
when deploying on Windows with plugins stored relatively to the executable), the followingMAGNUM_PLUGINS_*_DIR
variables depend on it.MAGNUM_PLUGINS_FONT[|_DEBUG|_RELEASE]_DIR
— Directory with dynamic font pluginsMAGNUM_PLUGINS_FONTCONVERTER[|_DEBUG|_RELEASE]_DIR
— Directory with dynamic font converter pluginsMAGNUM_PLUGINS_IMAGECONVERTER[|_DEBUG|_RELEASE]_DIR
— Directory with dynamic image converter pluginsMAGNUM_PLUGINS_IMPORTER[|_DEBUG|_RELEASE]_DIR
— Directory with dynamic importer pluginsMAGNUM_PLUGINS_AUDIOIMPORTER[|_DEBUG|_RELEASE]_DIR
— Directory with dynamic audio importer plugins
However, this command will try to find only the base library, not the optional components. The base library depends on Using Corrade with CMake Corrade and OpenGL libraries (or OpenGL ES libraries). Additional dependencies are specified by the components. The optional components are:
Audio
— Audio libraryDebugTools
— DebugTools libraryGL
– GL libraryMeshTools
— MeshTools libraryPrimitives
— Primitives librarySceneGraph
— SceneGraph libraryShaders
— Shaders libraryShapes
— Shapes libraryText
— Text libraryTextureTools
— TextureTools libraryTrade
— Trade library
Platform namespace is split into more components:
GlfwApplication
— GlfwApplicationGlutApplication
— GlutApplicationGlxApplication
— GlxApplicationSdl2Application
— Sdl2ApplicationXEglApplication
— XEglApplicationWindowlessCglApplication
— WindowlessCglApplicationWindowlessEglApplication
— WindowlessEglApplicationWindowlessGlxApplication
— WindowlessGlxApplicationWindowlessIosApplication
— WindowlessIosApplicationWindowlessWglApplication
— WindowlessWglApplicationWindowlessWindowsEglApplication
— WindowlessWindowsEglApplication
For manual context creation (without application wrappers) there are also platform-specific context libraries (see Using custom platform toolkits for more information):
CglContext
— CGL contextEglContext
— EGL contextGlxContext
— GLX contextWglContext
— WGL context
There are also extensions to Corrade::
OpenGLTester
— GL::OpenGLTester class
The library also contains a set of plugins for importing essential file formats. Additional plugins are provided in separate plugin repository, see Plugin usage with CMake for more information. If you are going to use dynamic plugins (the default) via plugin manager, they don't need to be handled via CMake. The manager will look for them at runtime at specified location and loads them dynamically. However, if they are built as static (see Downloading and building plugins for more information), they need to be linked into the executable and then explicitly imported. Also if you are going to use them as dependencies, you need to find the dependency and then link to it.
AnyAudioImporter
— AnyAudioImporter pluginAnyImageConverter
— AnyImageConverter pluginAnyImageImporter
— AnyImageImporter pluginAnySceneImporter
— AnySceneImporter pluginMagnumFont
— MagnumFont pluginMagnumFontConverter
— MagnumFontConverter pluginObjImporter
— ObjImporter pluginTgaImageConverter
— TgaImageConverter pluginTgaImporter
— TgaImporter pluginWavAudioImporter
— WavAudioImporter plugin
Lastly, a few utility executables are available:
distancefieldconverter
— Distance Field conversion utility executablefontconverter
— Font conversion utility executableimageconverter
— Image conversion utility executablegl-info
— Magnum GL Info executableal-info
— Magnum OpenAL Info executable
Note that each namespace, all Platform libraries and each plugin class contain more detailed information about dependencies, availability on particular platform and also guide how to enable given library in build and use it with CMake.
Example usage with specifying additional components is:
find_package(Magnum REQUIRED Trade MeshTools Primitives Sdl2Application)
For each component is then defined:
Magnum_*_FOUND
— Whether the component was foundMagnum::*
— Component imported target
If exactly one *Application
or exactly one Windowless*Application
component is requested and found, its target is available in convenience alias Magnum::Application
/ Magnum::WindowlessApplication
to simplify porting. Similarly, if exactly one *Context
component is requested and found, its target is available in convenience alias Magnum::GLContext
.
The package is found if either debug or release version of each requested library (or plugin) is found. If both debug and release libraries (or plugins) are found, proper version is chosen based on actual build configuration of the project (i.e. Debug
build is linked to debug libraries, Release
build to release libraries). Note that this autodetection might fail for the MAGNUM_PLUGINS_DIR
variable, especially on multi-configuration build systems. You can make use of CORRADE_MAGNUM_PLUGINS_*_DEBUG_DIR
/ MAGNUM_PLUGINS_*_RELEASE_DIR
variables to decide in preprocessing step.
Features of found Magnum library are exposed in these CMake variables, they are also available as preprocessor variables if including Magnum/
MAGNUM_BUILD_DEPRECATED
— Defined if compiled with deprecated APIs includedMAGNUM_BUILD_STATIC
— Defined if compiled as static libraries. Default are shared libraries.MAGNUM_BUILD_MULTITHREADED
— Defined if compiled in a way that allows having multiple thread-local Magnum contexts. The default.MAGNUM_TARGET_GL
— Defined if compiled with OpenGL interoperability enabledMAGNUM_TARGET_GLES
— Defined if compiled for OpenGL ESMAGNUM_TARGET_GLES2
— Defined if compiled for OpenGL ES 2.0MAGNUM_TARGET_GLES3
— Defined if compiled for OpenGL ES 3.0MAGNUM_TARGET_DESKTOP_GLES
— Defined if compiled with OpenGL ES emulation on desktop OpenGLMAGNUM_TARGET_WEBGL
— Defined if compiled for WebGLMAGNUM_TARGET_HEADLESS
— Defined if compiled for headless machines. See MAGNUM_TARGET_ HEADLESS documentation for more information.
Workflows without imported targets are deprecated and the following variables are included just for backwards compatibility and only if MAGNUM_
MAGNUM_LIBRARIES
— Expands toMagnum::Magnum
target. UseMagnum::Magnum
target directly instead.MAGNUM_*_LIBRARIES
— Expands toMagnum::*
target. UseMagnum::*
target directly instead.MAGNUM_APPLICATION_LIBRARIES
/MAGNUM_WINDOWLESSAPPLICATION_LIBRARIES
— Expands toMagnum::Application
/Magnum::WindowlessApplication
target. UseMagnum::Application
/Magnum::WindowlessApplication
target directly instead.MAGNUM_CONTEXT_LIBRARIES
— Expands toMagnum::Context
target. UseMagnum::Context
target directly instead.
Corrade library provides also its own set of CMake macros and variables, see its documentation for more information. Plugins repository, Integration repository and Extras repository have also their own CMake modules.
Other CMake modules
The modules/
directory contains more useful CMake modules:
FindOpenAL.cmake
— CMake module for finding OpenAL. This is a forked version of the upstream module that works properly with Emscripten. Copy this to your module directory if you want to use the Audio library on Emscripten.FindGLFW.cmake
— CMake module for finding GLFW. Copy this to your module directory if you want to use Platform::GlfwApplication. FindEGL.cmake
— CMake module for finding EGL. Copy this to your module directory if you want to target embedded platforms such as iOS, Android, Windows RT or Emscripten or if you want to use EGL instead of GLX/WGL/CGL on a desktop platform.FindOpenGLES2.cmake
,FindOpenGLES3.cmake
— CMake module for finding OpenGL ES 2.0 / 3.0 library. Copy this to your module directory if you want to target OpenGL ES.FindSDL2.cmake
— CMake module for finding SDL 2. Copy this to your module directory if you want to use Platform::Sdl2Application.