Lines Matching +refs:cmake +refs:command +refs:run +refs:help

3 To build libwebm you must first create project files. To do this run cmake
6 Makefile.unix can be used as a fallback on systems that cmake does not
13 run cmake with the path to the libwebm repo:
15 $ cmake path/to/libwebm
17 On Windows the above command will produce Visual Studio project files for the
19 above command will produce a makefile.
22 the cmake command line. This argument must be followed by the name of a
23 generator. Running cmake with the --help argument will list the available
26 On Mac OS X you would run the following command to generate Xcode projects:
28 $ cmake path/to/libwebm -G Xcode
30 On a Windows box you would run the following command to generate Visual Studio
33 $ cmake path/to/libwebm -G "Visual Studio 12"
37 $ cmake path/to/libwebm "Visual Studio 12 Win64"
43 is controlled when you run cmake. The following examples demonstrate various
48 $ cmake path/to/libwebm
51 $ cmake path/to/libwebm -DCMAKE_BUILD_TYPE=release
54 $ cmake path/to/libwebm -DCMAKE_BUILD_TYPE=relwithdebinfo
57 $ cmake path/to/libwebm -DCMAKE_BUILD_TYPE=debug
62 To enable libwebm tests add -DENABLE_TESTS=ON CMake generation command line. For
65 $ cmake path/to/libwebm -G Xcode -DENABLE_TESTS=ON
69 command to be similar to the following:
71 $ cmake path/to/libwebm -G Xcode -DENABLE_TESTS=ON \
89 ENABLE_IWYU must be turned on at cmake run time:
91 $ cmake path/to/libwebm -G "Unix Makefiles" -DENABLE_IWYU=ON
93 This adds the iwyu target to the build. To run include-what-you-use:
104 have been met. Values to the right of the equals sign are what a successful run
122 To cross compile libwebm for Windows using mingw-w64 run cmake with the
125 $ cmake -DCMAKE_TOOLCHAIN_FILE=path/to/libwebm/build/mingw-w64_toolchain.cmake \
135 $ cmake -DCMAKE_TOOLCHAIN_FILE=path/to/libwebm/build/mingw-w64_toolchain.cmake \
141 $ cmake -DCMAKE_TOOLCHAIN_FILE=path/to/libwebm/build/mingw-w64_toolchain.cmake \