By nenchev, 11 October, 2024
  1. Run gdb with the gdb command.
  2. Set breakpoint with gud-break or C-x C-a C-b
  3. Remove breakpont with gud-remove or C-x C-a C-d
  4. Run the executable with gud-go or C-x- C-a C-v
  5. Continue after break with gud-cont or C-x C-a C-r
  6. Print with gud-print or C-x C-a C-p
  7. Run until gud-until or C-x C-a C-u
  8. Using gdb-many-windows to switch to a comprehensive debugging U

Tags

By nenchev, 11 June, 2024
  1. Ensure QTDIR environment variable is set to something like:
    1. C:\Qt\<cmake-version>\<compiler-arch>
  2. In order for Qt DLLs to be found, PATH must include something like:
    1. C:\Qt\<cmake-version>\<compiler-arch>\bin
  3. CMakePresets.json will include something like the following definition, this will be part of the top level configuration preset that all CMake presets will inherit from.

Tags

By nenchev, 14 February, 2024

There are certain preferences that do not persist and carry over onto new scenes, such as: the animation start/end or playback start/end and measurement units. If you want to setup these preferences for all new scenes, go to File -> New Scene -> Select the options box on that menu item.

Tags