Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d544d01

Browse files
committed
Moved customization to bgenlocations.py module.
1 parent eba8856 commit d544d01

2 files changed

Lines changed: 13 additions & 6 deletions

File tree

Tools/bgen/bgen/bgenlocations.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#
2+
# Local customizations
3+
#
4+
5+
# Where to find the Universal Header include files:
6+
INCLUDEDIR="Sap:CW8 Gold:Metrowerks CodeWarrior:MacOS Support:Headers:Universal Headers:"
7+
8+
# Where to put the python definitions file:
9+
TOOLBOXDIR="Moes:Development:Jack:Python 1.3:Mac:Lib:toolbox:"
10+
11+
# Creator for C files:
12+
CREATOR="CWIE"

Tools/bgen/bgen/scantools.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,7 @@
2626
except ImportError:
2727
MacOS = None
2828

29-
# Default preferences
30-
#CREATOR = 'KAHL' # Guido's favorite text editor on the Mac
31-
#INCLUDEDIR = "D:Development:THINK C:Mac #includes:Apple #includes:"
32-
CREATOR = 'CWIE' # Jack's favorite text editor on the Mac
33-
INCLUDEDIR = "Sap:CodeWarrior7:Metrowerks CodeWarrior:MacOS Support:Headers:Universal Headers:"
34-
29+
from bgenlocations import CREATOR, INCLUDEDIR
3530

3631
Error = "scantools.Error"
3732

0 commit comments

Comments
 (0)