Shared object loading library
git submodule update --init --recursive
mkdir <build/dir> && cd <build/dir>
cmake [-G"<Generator>"] [-DBUILD_STATIC=ON] <path/to/repo>
cmake --build . --target glug_library
mkdir <build/dir> && cd <build/dir>
cmake [-G"<Generator>"] -DBUILD_TESTS <path/to/repo>
cmake --build . --target check
ctest [-V]
mkdir <build/dir> && cd <build/dir>
cmake [-G"<Generator>"] [options] <path/to/repo>
cmake --build .
| Option | Description | Default |
|---|---|---|
| -DBUILD_STATIC | Build as a static library | OFF |
| -DBUILD_TESTS | Build tests | OFF |
| -DBUILD_XMPLS | Build the examples | OFF |
mkdir <build/dir> && cd <build/dir>
cmake [-G"<Generator>"] [-DBUILD_STATIC=ON] <path/to/repo>
cmake --build . --target install