diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-02-12 14:50:41 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-12 23:50:41 +0100 |
commit | 4326f743d0fe6fb206047db8025206d3cf0d554b (patch) | |
tree | c810e66f1468685e09c94d5ae43887926552bd80 /lib/std | |
parent | afa87f223cdb9fd10e8b6f70aad51c44da7303a7 (diff) | |
download | Nim-4326f743d0fe6fb206047db8025206d3cf0d554b.tar.gz |
compilesettings: add libpath (#16997)
* compilesettings: add libpath * add test * changelog * fixup Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
Diffstat (limited to 'lib/std')
-rw-r--r-- | lib/std/compilesettings.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/std/compilesettings.nim b/lib/std/compilesettings.nim index 5f3da011e..7058e55a5 100644 --- a/lib/std/compilesettings.nim +++ b/lib/std/compilesettings.nim @@ -31,6 +31,7 @@ type ccompilerPath ## the path to the C/C++ compiler backend ## the backend (eg: c|cpp|objc|js); both `nim doc --backend:js` ## and `nim js` would imply backend=js + libPath ## the absolute path to the stdlib library, i.e. nim's `--lib`, since 1.5.1 MultipleValueSetting* {.pure.} = enum ## \ ## settings resulting in a seq of string values |