Added a couple more settings to CompState to set the locations of the (C and occam) header files (but not made them available via the command-line, just yet)
This commit is contained in:
parent
e9730bfe1e
commit
b830b27066
|
@ -104,6 +104,8 @@ data CompState = CompState {
|
||||||
csUsageChecking :: Bool,
|
csUsageChecking :: Bool,
|
||||||
csVerboseLevel :: Int,
|
csVerboseLevel :: Int,
|
||||||
csOutputFile :: String,
|
csOutputFile :: String,
|
||||||
|
csOutputHeaderFile :: String,
|
||||||
|
csOutputIncFile :: String,
|
||||||
csKeepTemporaries :: Bool,
|
csKeepTemporaries :: Bool,
|
||||||
csEnabledWarnings :: Set WarningType,
|
csEnabledWarnings :: Set WarningType,
|
||||||
csRunIndent :: Bool,
|
csRunIndent :: Bool,
|
||||||
|
@ -151,6 +153,8 @@ emptyState = CompState {
|
||||||
csUsageChecking = True,
|
csUsageChecking = True,
|
||||||
csVerboseLevel = 0,
|
csVerboseLevel = 0,
|
||||||
csOutputFile = "-",
|
csOutputFile = "-",
|
||||||
|
csOutputHeaderFile = "-",
|
||||||
|
csOutputIncFile = "-",
|
||||||
csKeepTemporaries = False,
|
csKeepTemporaries = False,
|
||||||
csEnabledWarnings = Set.fromList
|
csEnabledWarnings = Set.fromList
|
||||||
[ WarnInternal
|
[ WarnInternal
|
||||||
|
|
Loading…
Reference in New Issue
Block a user