1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 11:11:20 +00:00

Minor rewording to command line help

This commit is contained in:
FellippeHeitor 2016-07-02 21:24:22 -03:00
parent 4550c333b7
commit c6b05376d4
2 changed files with 9 additions and 5 deletions

View file

@ -3,5 +3,5 @@ DIM SHARED BuildNum AS STRING
Version$ = "1.000"
'BuildNum format is YYYYMMDD/id, where id is a ever-increasing
'integer. If you make a change, update the date and increase the id!
BuildNum$ = "20160702/31"
BuildNum$ = "20160702/32"

View file

@ -12312,13 +12312,17 @@ FUNCTION ParseCMDLineArgs$ ()
PRINT "USAGE: qb64 [switches] <inputs>"
PRINT
PRINT "OPTIONS:"
PRINT " <file> Source file to load"
PRINT " <file> Source file to load" ' '80 columns
PRINT " -c Compile instead of edit"
PRINT " -x Compile instead of edit and output the result to the console"
PRINT " -x Compile instead of edit and output the result to the"
PRINT " console"
PRINT " -z Generate C code without compiling to executable"
'PRINT " -g Non-GUI environment (uses $CONSOLE:ONLY - for G-WAN compilation)"
'PRINT " -g Non-GUI environment (uses $CONSOLE:ONLY - for G-WAN"
'PRINT " compilation)"
PRINT " -o <file> Write output executable to <file>"
PRINT " -e Enables OPTION _EXPLICIT, making variable declaration mandatory (per-compilation; doesn't affect the source file or global settings)"
PRINT " -e Enables OPTION _EXPLICIT, making variable declaration"
PRINT " mandatory (per-compilation; doesn't affect the"
PRINT " source file or global settings)"
PRINT " -s[:switch=true/false] View/edit compiler settings"
PRINT
SYSTEM