Skip to content

RafaelNMeyer/cdb

Repository files navigation

Cpp Debugger

Build Instructions

  1. Install vcpkg
    Make sure you have vcpkg installed on your system.

  2. Create CMakeUserPresets.json in the root directory
    Configure the presets and set the VCPKG_ROOT environment variable. Use the following template:

   {
     "version": 1,
     "configurePresets": [
       {
         "name": "<user_preset_name>",
         "inherits": "vcpkg",
         "environment": {
           "VCPKG_ROOT": "<Path_to_vcpkg>"
         }
       }
     ]
   }
  1. Build the Project
    Run the following commands:
   mkdir build && cd build  
   cmake .. --preset <user_preset_name>  
   cmake --build .

Run the Debugger

Execute the following command to run the debugger:
./tools/cdb

Run Tests

To execute the test suite, use:
./test/tests

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published