Template gamemode c++ bolt using open.mp-gdk and open.mp-sdk
Just drop release server.dll or libserver.so (depending on your operating system) in Components folder, and run your open.mp server.
- CMake 3.19+
- Visual Studio 2019+ (on Windows)
- Clang (on Linux)
mkdir build
cd build
cmake .. -A Win32 -T ClangCLOpen Visual Studio and build the solution.
mkdir build
cd build
# May need to configure this line.
export CC=/usr/lib/llvm/18/bin/clang CXX=/usr/lib/llvm/18/bin/clang++
cmake .. -G Ninja -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 -DCMAKE_BUILD_TYPE=Debug
cmake --build . --config DebugChange Debug to Release for final versions.