mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Added OS X configures options for SDK & minimum version
This commit is contained in:
parent
fa07bcd233
commit
b496d63632
1 changed files with 8 additions and 0 deletions
8
configure
vendored
8
configure
vendored
|
@ -49,6 +49,8 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
(semicolon delimited and quoted when multiple)
|
(semicolon delimited and quoted when multiple)
|
||||||
--pkg-name-prefix=NAME use the given name as the package prefix instead
|
--pkg-name-prefix=NAME use the given name as the package prefix instead
|
||||||
of the default CMake project name
|
of the default CMake project name
|
||||||
|
--osx-sysroot=PATH path to the OS X SDK to compile against
|
||||||
|
--osx-min-version=VER minimum OS X version (the deployment target)
|
||||||
|
|
||||||
Influential Environment Variables (only on first invocation
|
Influential Environment Variables (only on first invocation
|
||||||
per build directory):
|
per build directory):
|
||||||
|
@ -168,6 +170,12 @@ while [ $# -ne 0 ]; do
|
||||||
--pkg-name-prefix=*)
|
--pkg-name-prefix=*)
|
||||||
append_cache_entry PACKAGE_NAME_PREFIX STRING $optarg
|
append_cache_entry PACKAGE_NAME_PREFIX STRING $optarg
|
||||||
;;
|
;;
|
||||||
|
--osx-sysroot=*)
|
||||||
|
append_cache_entry CMAKE_OSX_SYSROOT PATH $optarg
|
||||||
|
;;
|
||||||
|
--osx-min-version=*)
|
||||||
|
append_cache_entry CMAKE_OSX_DEPLOYMENT_TARGET STRING $optarg
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Invalid option '$1'. Try $0 --help to see available options."
|
echo "Invalid option '$1'. Try $0 --help to see available options."
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue