diff options
Diffstat (limited to 'compiler/options.nim')
-rw-r--r-- | compiler/options.nim | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/compiler/options.nim b/compiler/options.nim index 746ee9044..2295bbf93 100644 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -102,6 +102,17 @@ type ideNone, ideSug, ideCon, ideDef, ideUse, ideDus, ideChk, ideMod, ideHighlight, ideOutline + ConfigRef* = ref object ## eventually all global configuration should be moved here + cppDefines*: HashSet[string] + headerFile*: string + +proc newConfigRef*(): ConfigRef = + result = ConfigRef(cppDefines: initSet[string](), + headerFile: "") + +proc cppDefine*(c: ConfigRef; define: string) = + c.cppDefines.incl define + var gIdeCmd*: IdeCmd @@ -122,7 +133,7 @@ var outFile*: string = "" docSeeSrcUrl*: string = "" # if empty, no seeSrc will be generated. \ # The string uses the formatting variables `path` and `line`. - headerFile*: string = "" + #headerFile*: string = "" gVerbosity* = 1 # how verbose the compiler is gNumberOfProcessors*: int # number of processors gWholeProject*: bool # for 'doc2': output any dependency |