mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Add --build-dir as alias for --builddir
This alias makes it easier for tooling that deals with both Zeek and Broker (which uses `--build-dir`). Also, it's one less quirk to remember when working with both repositories.
This commit is contained in:
parent
68bb0e21a3
commit
e73bd60d04
1 changed files with 4 additions and 0 deletions
4
configure
vendored
4
configure
vendored
|
@ -18,6 +18,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
|
|||
|
||||
Build Options:
|
||||
--builddir=DIR place build files in directory [build]
|
||||
--build-dir=DIR alias for --builddir
|
||||
--build-type=TYPE set CMake build type [RelWithDebInfo]:
|
||||
- Debug: optimizations off, debug symbols + flags
|
||||
- MinSizeRel: size optimizations, debugging off
|
||||
|
@ -171,6 +172,9 @@ while [ $# -ne 0 ]; do
|
|||
--builddir=*)
|
||||
builddir=$optarg
|
||||
;;
|
||||
--build-dir=*)
|
||||
builddir=$optarg
|
||||
;;
|
||||
--build-type=*)
|
||||
append_cache_entry CMAKE_BUILD_TYPE STRING $optarg
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue