-
When a user wants to build curl with cmake, how do they figure out what available For example switching dependencies on/off or passing a custom path to check for a dependency? We don't have any of those documented so I figure there has to be a way to list them? With |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
There is no
There may be some I forgot about. curl-for-win covers a fair amount of these options, perhaps it can serve |
Beta Was this translation helpful? Give feedback.
-
PR → #15388 |
Beta Was this translation helpful? Give feedback.
There is no
configure --help
with CMake. It's mostly just loose conventions and digging the sources.The easiest is to find the official toggle options (102 as of now):
Compared to
configure
the defaults are easier to figure out.Then there are non-toggle settings. There is no easy grep for them.
Most of these are internal, only a few are meant as public options:
CURL_CA_BUNDLE
,CURL_CA_EMBED
,CURL_CA_PATH
,