BastiaanOlij / gdnative_cpp_example

GDNative C++ example for tutorial
MIT License
65 stars 31 forks source link

Recommend allowing debugging code on Windows #10

Open Siddhant628 opened 3 years ago

Siddhant628 commented 3 years ago

Currently, the SConstruct file isn't specifying any variables to generate the program database (.pdb) file for the native code in the debug configuration on Windows.

I think it should default to generating it in debug configuration. This is how it used to be in an earlier version of the example, probably the change was introduced due to removal of the /ZI compiler option from the SConstruct.

I used the PDB variable for this so that I can step through code. :)