From 88844ee5da0ac7bbe5d8109cb69cb7b52da65dc3 Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Thu, 19 Jun 2025 13:32:18 +0200 Subject: [PATCH] Added small script for starting scons via IDE for debugging. --- contrib/run_scons.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 contrib/run_scons.py diff --git a/contrib/run_scons.py b/contrib/run_scons.py new file mode 100644 index 0000000..e39d3b7 --- /dev/null +++ b/contrib/run_scons.py @@ -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())