mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-15 11:46:00 -06:00
4e66ef8fe12793128f24850bc3b6efbb0404b6a6
For example:
CHECK_HEADER_EXISTS("type.h" HAVE_TYPE_H)
is:
CHECK_SYMBOL_EXISTS(main "type.h" HAVE_TYPE_H)
CHECK_LIBRARY_EXISTS("nsl" gethostname HAVE_LIBNSL)
would be
SET(CMAKE_REQUIRED_LIBRARIES "nsl")
CHECK_SYMBOL_EXISTS(gethostname "netdb.h" HAVE_LIBNSL)
...
Description
Mirror of CMake upstream repository
Languages
C
40.6%
C++
29.8%
CMake
26.8%
Roff
0.7%
Shell
0.5%
Other
1%