diff options
author | Stephan Szabo <stephan.szabo@sony.com> | 2018-11-21 19:03:33 (GMT) |
---|---|---|
committer | Stephan Szabo <stephan.szabo@sony.com> | 2018-11-28 15:43:27 (GMT) |
commit | 66704e4271f3bd3b869c86bcd9aef9be87f831ea (patch) | |
tree | 1e78a865df81653579291f4502268d5629ca7e23 /Templates | |
parent | fc58a40e763cd65053acf774c3cf4e4c743004f1 (diff) | |
download | CMake-66704e4271f3bd3b869c86bcd9aef9be87f831ea.zip CMake-66704e4271f3bd3b869c86bcd9aef9be87f831ea.tar.gz CMake-66704e4271f3bd3b869c86bcd9aef9be87f831ea.tar.bz2 |
VS: Add NASM fwin/felf switches
The generated NASM file from the xml does not contain the fwin/felf
switches that don't seem to directly exist in the xml file.
Diffstat (limited to 'Templates')
-rw-r--r-- | Templates/MSBuild/FlagTables/v10_NASM.json | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Templates/MSBuild/FlagTables/v10_NASM.json b/Templates/MSBuild/FlagTables/v10_NASM.json index 8c18eb2..434cd63 100644 --- a/Templates/MSBuild/FlagTables/v10_NASM.json +++ b/Templates/MSBuild/FlagTables/v10_NASM.json @@ -1,6 +1,13 @@ [ { "name": "Outputswitch", + "switch": "fwin", + "comment": "Object File win32", + "value": "0", + "flags": [] + }, + { + "name": "Outputswitch", "switch": "fwin32", "comment": "Object File win32", "value": "0", @@ -15,6 +22,13 @@ }, { "name": "Outputswitch", + "switch": "felf", + "comment": "ELF32 (i386) object files (e.g. Linux)", + "value": "2", + "flags": [] + }, + { + "name": "Outputswitch", "switch": "felf32", "comment": "ELF32 (i386) object files (e.g. Linux)", "value": "2", |