-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Compiling the whole project
- Install Visual Studio
- Select Desktop development with C++, CMake and Git.
Below is a video showing the installation process from start to finish:
x64dbg-vs-install.mp4
You need to clone the repository on your local drive:
git clone --recursive https://github.com/x64dbg/x64dbg.gitThe project uses a CMake project, which automatically fetches all the necessary dependencies. You can use many IDEs to work with CMake projects:
Open the project folder in your favorite IDE and hit Build to compile the project.
Below is a video showing the compilation process in Visual Studio:
x64dbg-build.mp4
Sometimes the Visual Studio CMake integration does not work correctly when opening the folder. If this happens you can install CMake in your path (Windows x64 Installer) and run the following commands from the cloned folder:
cmake -B build64 -A x64
start build64\x64dbg.slnThen you can build the solution and run the exe project to start x64dbg. If you want to build x32dbg you can configure like this:
cmake -B build32 -A Win32
start build32\x64dbg.slnNote: Due to continued vandalism it is no longer possible to edit the wiki directly. Instead you can suggest an edit in the x64dbg/wiki repository.