How to build and run the Project
-
CMake:
- mkdir build
- cd build
- cmake .. -G "Visual Studio 17 2022"
Debug vs. Release Debug mode: Use for development, debugging, and testing. It includes debug symbols and is slower. Release mode: Use for final builds and performance testing. It is optimized and faster.
To build Debug:
cmake --build . --config DebugTo build Release:
cmake --build . --config Release -
Open the .sln file generated by CMake in the build directory.
-
Right-click the executable project (e.g., DirectX11Engine) and select "Set as Startup Project"
Controls:
W A S D - Moves the camera
Ctrl + A - Moves the camera Up Ctrl + S - Moves the camera Down
F12 - Toggle between CPU and GPU Driven Rendering