Added small script for starting scons via IDE for debugging.

This commit is contained in:
Patrick 2025-06-19 13:32:18 +02:00
parent 161f2e52d8
commit 88844ee5da

6
contrib/run_scons.py Normal file
View File

@ -0,0 +1,6 @@
# use this to start SCons from the IDE for debugging
import sys
from SCons.Script.Main import main
if __name__ == '__main__':
sys.exit(main())