summaryrefslogtreecommitdiff
path: root/CMake/CurlSymbolHiding.cmake
Commit message (Collapse)AuthorAgeFilesLines
* CMake: fix typos and spellingDaniel Gustafsson2019-07-091-1/+1
|
* CMake: Convert errant elseif() to else()Kyle Edwards2019-07-091-1/+1
| | | | | | | | | | | CMake interprets an elseif() with no arguments as elseif(FALSE), resulting in the elseif() block not being executed. That is not what was intended here. Change the empty elseif() to an else() as it was intended. Closes #4101 Reported-by: Artalus <artalus-mail@yandex.ru> Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
* CMake: Update scripts to use consistent styleRuslan Baratov2018-07-171-46/+46
| | | | | Closes #2727 Reviewed-by: Sergei Nikulov
* CMake: Try to (un-)hide private library symbolsJakub Zakrzewski2016-09-101-0/+61
Detect support for compiler symbol visibility flags and apply those according to CURL_HIDDEN_SYMBOLS option. It should work true to the autotools build except it tries to unhide symbols on Windows when requested and prints warning if it fails. Ref: https://github.com/curl/curl/issues/981#issuecomment-242665951 Reported-by: Daniel Stenberg