C++11 2D game framework using SDL2
https://sourceforge.net/projects/nomlib/files ↗// readme
nomlib
C++11 2D game framework using SDL2
Projects Using nomlib
Building
First, ensure that you have the following core dependencies installed:
- cmake v3.24 to cmake v4.2.3
cmake v4.4.xis not supported when building on Mac OSX
- git
- doxygen v1.8.x and graphviz only if you want to generate developer documentation.
- vcpkg
Next, you should visit the dependencies section for your platform. After these mundane chores are complete, you should be ready to start the building process for your platform!
git clone "https://github.com/i8degrees/nomlib.git" nomlib.git
mkdir build && cd build
Mac OS X
After you have the dependencies taken care of, execute the following commands at your terminal prompt:
# XCode project files can be generated by passing -GXcode
cmake -DDEBUG=on -DDEBUG_ASSERT=on -DEXAMPLES=off -DNOM_BUILD_TESTS=on -DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 -DCMAKE_INSTALL_PREFIX=~/Library/Frameworks ..…