diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-05-25 07:33:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-25 07:33:33 +0200 |
commit | 7e9cda7dbaf20ee35b05e79f29e2bda7dfcf58c9 (patch) | |
tree | 17d3853d51cdcd6f6a39e4c38fbe1bbec5169215 /testament | |
parent | 7e53c1c5c58c1db070cd430b5630aca9efdd04ef (diff) | |
download | Nim-7e9cda7dbaf20ee35b05e79f29e2bda7dfcf58c9.tar.gz |
fixes #10299 (#11324)
Diffstat (limited to 'testament')
-rw-r--r-- | testament/specs.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testament/specs.nim b/testament/specs.nim index 11286ceab..4d09f438f 100644 --- a/testament/specs.nim +++ b/testament/specs.nim @@ -78,7 +78,7 @@ proc getCmd*(s: TSpec): string = result = s.cmd const - targetToExt*: array[TTarget, string] = ["c", "cpp", "m", "js"] + targetToExt*: array[TTarget, string] = ["nim.c", "nim.cpp", "nim.m", "js"] targetToCmd*: array[TTarget, string] = ["c", "cpp", "objc", "js"] when not declared(parseCfgBool): |