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:
39 Command Line CMake
41 A CMake build of curl is similar to the autotools build of curl. It
50 2. Run CMake from the build tree, giving it the path to the top of
51 the curl source tree. CMake will pick a compiler for you. If you
53 variable prior to running CMake.
55 $ cmake ../curl
62 (The test suite does not work with the cmake build)
66 CMake comes with a curses based interface called ccmake. To run ccmake on
67 a curl use the instructions for the command line cmake, but substitute
68 ccmake ../curl for cmake ../curl. This will bring up a curses interface
73 cmake-gui
75 CMake also comes with a Qt based GUI called cmake-gui. To configure with
76 cmake-gui, you run cmake-gui and follow these steps:
89 6. Run the native build tool that you used CMake to generate.