mirror of
https://github.com/curl/curl.git
synced 2026-06-16 05:05:37 +03:00
Added --include to set the compiler include flag for libcurl
This commit is contained in:
parent
32eaf9e83a
commit
d9e54a3cdf
1 changed files with 5 additions and 0 deletions
|
|
@ -19,6 +19,7 @@ Available values for OPTION include:
|
|||
--cflags pre-processor and compiler flags
|
||||
--feature newline separated list of enabled features
|
||||
--help display this help and exit
|
||||
--include display compiler flag(s) to set curl\'s include path
|
||||
--libs library linking information
|
||||
--prefix curl install prefix
|
||||
--version output version information
|
||||
|
|
@ -76,6 +77,10 @@ while test $# -gt 0; do
|
|||
echo @CPPFLAGS@
|
||||
;;
|
||||
|
||||
--include)
|
||||
echo -I@includedir@
|
||||
;;
|
||||
|
||||
--libs)
|
||||
echo -L@libdir@ -lcurl @LDFLAGS@ @LIBS@
|
||||
;;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue