Skip to content

Commit b86a8a3

Browse files
committed
Added target list to build script help.
1 parent 6e6caae commit b86a8a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def cmd_exists(cmd): # see if a given command is available on the system PATH
7676
parser.add_argument("--clean", action='store_true', help="Scrub all compiler artifacts from the current directory before building.")
7777
parser.add_argument("--cxxflags", default="", help="Define additional C++ compiler flags to use.")
7878
parser.add_argument("--ldflags", default="", help="Define additional C++ linker flags to use.")
79-
parser.add_argument("target", choices=PRODUCTS, default="basil-debug", metavar="target", nargs='?', help="Specifies the desired product you'd like to build.")
79+
parser.add_argument("target", choices=PRODUCTS, default="basil-debug", metavar="target", nargs='?', help="Specifies the desired product you'd like to build. (Options are " + ", ".join(PRODUCTS) + ")")
8080
args = parser.parse_args(sys.argv[1:])
8181

8282
CXX = args.cxx

0 commit comments

Comments
 (0)