INSTALL-CMAKE.md: drop two obsolete sections

Follow-up to 89043ba906 #20407

Closes #21761
This commit is contained in:
Viktor Szakats 2026-05-26 21:32:19 +02:00
parent 2cc171cbd4
commit 0cb455aa85
No known key found for this signature in database

View file

@ -103,16 +103,6 @@ arguments in the build.
Building statically is not for the faint of heart.
### Fallback for CMake before version 3.13
CMake before version 3.13 does not support the `--build` option. In that
case, you have to `cd` to the build directory and use the building tool that
corresponds to the build files that CMake generated for you. This example
assumes that CMake generates `Makefile`:
$ cd ../curl-build
$ make
# Testing
(The test suite does not yet work with the cmake build)
@ -129,16 +119,6 @@ to set a custom install prefix for curl, set
[`CMAKE_INSTALL_PREFIX`](https://cmake.org/cmake/help/latest/variable/CMAKE_INSTALL_PREFIX.html)
when configuring the CMake build.
### Fallback for CMake before version 3.15
CMake before version 3.15 does not support the `--install` option. In that
case, you have to `cd` to the build directory and use the building tool that
corresponds to the build files that CMake generated for you. This example
assumes that CMake generates `Makefile`:
$ cd ../curl-build
$ make install
# CMake usage
This section describes how to locate and use curl/libcurl from CMake-based