- Pause on
9
- Framestep on
0
Open x86 Native Tools Command Prompt for VS 20XX
and go to the Revolve Labtool's directory.
mkdir build
cd build
cmake .. -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Debug # Configure the project each time you edit CMakeLists.txt
cmake --build . # Build the injector and DLL each time you edit the source code
When contributing to the project, use pre-commit to maintain a uniform code.
pre-commit install
To fix the formatting, either try to commit to automatically fix (does not work on --amend), or run this command:
pre-commit run --all