Lines Matching +full:mingw +full:- +full:w64
21 To control what types of projects are generated the -G parameter is added to
23 generator. Running cmake with the --help argument will list the available
28 $ cmake path/to/libwebm -G Xcode
33 $ cmake path/to/libwebm -G "Visual Studio 12"
35 To generate 64-bit Windows Visual Studio 2013 projects:
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
71 $ cmake path/to/libwebm -G Xcode -DENABLE_TESTS=ON \
72 -DGTEST_SRC_DIR=/path/to/googletest
85 CMake Include-what-you-use integration
87 Include-what-you-use is an analysis tool that helps ensure libwebm includes the
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:
100 1. include-what-you-use and iwyu_tool.py must be in your PATH.
107 iwyu_tool_path=/path/to/include-what-you-use
113 For Include-what-you-use setup instructions, see:
114 https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/InstructionsForUsers.…
118 https://github.com/include-what-you-use/include-what-you-use/issues/100
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 \
128 Note1: As of this writing googletest will not build via mingw-w64 without
132 To build with tests when using mingw-w64 use the following arguments when
135 $ cmake -DCMAKE_TOOLCHAIN_FILE=path/to/libwebm/build/mingw-w64_toolchain.cmake \
136 -DENABLE_TESTS=ON -Dgtest_disable_pthreads=ON path/to/libwebm
138 Note2: i686-w64-mingw32 is the default compiler. This can be controlled using
141 $ cmake -DCMAKE_TOOLCHAIN_FILE=path/to/libwebm/build/mingw-w64_toolchain.cmake \
142 -DMINGW_PREFIX=x86_64-w64-mingw32 path/to/libwebm