This is a Game Engine being built using C++, SDL3 and ImGUI.
# Clone the repository
git clone https://github.com/acmpesuecc/game-engine
# Create a build directory
mkdir build
cd build
# Run CMake to configure the project
cmake ..
# Build the project
cmake --build .
If using Visual Studio,
# Clone the repository
git clone https://github.com/acmpesuecc/game-engine
# Create a build directory
mkdir build
cd build
# Run CMake to configure the project
cmake .. -G "Visual Studio 17 2022" -A x64 #depending on your visual studio version
# Build the project
cmake --build . --config Release
./bin/game-engine
- Running clang-format with diffs
chmod +x ci/linter.sh
./ci/linter.sh clangformat
- Running clang-tidy
./ci/linter.sh clangtidy