Home | History | Annotate | Download | only in docs

Lines Matching full:cmake

7                                 How To Compile with CMake
9 Building with CMake
12 from source code using the CMake build tool. To build with CMake, you will
13 of course have to first install CMake. The minimum required version of
14 CMake is specified in the file CMakeLists.txt found in the top of the curl
15 source tree. Once the correct version of CMake is installed you can follow
18 CMake builds can be configured either from the command line, or from one
19 of CMake's GUI's.
21 Current flaws in the curl CMake build
24 Missing features in the cmake build:
40 Command Line CMake
42 A CMake build of curl is similar to the autotools build of curl. It
51 2. Run CMake from the build tree, giving it the path to the top of
52 the curl source tree. CMake will pick a compiler for you. If you
54 variable prior to running CMake.
56 $ cmake ../curl
63 (The test suite does not work with the cmake build)
67 CMake comes with a curses based interface called ccmake. To run ccmake on
68 a curl use the instructions for the command line cmake, but substitute
69 ccmake ../curl for cmake ../curl. This will bring up a curses interface
74 cmake-gui
76 CMake also comes with a Qt based GUI called cmake-gui. To configure with
77 cmake-gui, you run cmake-gui and follow these steps:
90 6. Run the native build tool that you used CMake to generate.