2023-03-01 16:59:44 +01:00
|
|
|
import strutils
|
|
|
|
|
2024-06-11 17:18:06 +02:00
|
|
|
proc hasSkipParentCfg(): bool =
|
|
|
|
for param in 0 ..< paramCount():
|
2023-03-01 16:59:44 +01:00
|
|
|
if "skipParent" in paramStr(param):
|
|
|
|
return true
|
|
|
|
|
|
|
|
when hasSkipParentCfg():
|
|
|
|
import ../config.nims
|