Skip to content

olga-python/magnum-integration

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is integration library for Magnum C++11 OpenGL graphics engine, providing integration of various math and physics libraries into the engine itself. If you don't know what Magnum is, see https://github.com/mosra/magnum.

INSTALLATION

You can either use packaging scripts, which are stored in package/ subdirectory, or compile and install everything manually. The building process is similar to Magnum itself - see Magnum documentation for more comprehensive guide for building, packaging and crosscompiling.

Minimal dependencies

  • C++ compiler with good C++11 support. Currently there are two compilers which are tested to have everything needed: GCC >= 4.6 and Clang

    = 3.1. On Windows you can use MinGW. GCC 4.5, 4.4 and MSVC 2013 are supported if you use compatibility branch of Corrade and Magnum libraries.

  • CMake >= 2.8.8
  • Corrade, Magnum -- The engine itself

Compilation, installation

The integration library can be built and installed using these four commands:

mkdir -p build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make
make install

Building and running unit tests

If you want to build also unit tests (which are not built by default), pass -DBUILD_TESTS=ON to CMake. Unit tests use Corrade's TestSuite framework and can be run using

ctest --output-on-failure

in build directory. Everything should pass ;-)

CONTACT

Want to learn more about the library? Found a bug or want to tell me an awesome idea? Feel free to visit my website or contact me at:

LICENSE

Magnum is licensed under MIT/Expat license, see COPYING file for details.

About

Integration library for Magnum graphics engine

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 88.4%
  • C 8.1%
  • Shell 3.5%