blob: 3406f80dbd38d531a865eceee026205d61f4da9a [file] [log] [blame]
Tom Fineganb386aa52015-02-13 11:23:40 -08001Building Libwebm
2
3To build libwebm you must first create project files. To do this run cmake
4and pass it the path to your libwebm repo.
5
6Makefile.unix can be used as a fallback on systems that cmake does not
7support.
8
9
10CMake Basics
11
12To generate project/make files for the default toolchain on your system simply
13run cmake with the path to the libwebm repo:
14
15$ cmake path/to/libwebm
16
17On Windows the above command will produce Visual Studio project files for the
18newest Visual Studio detected on the system. On Mac OS X and Linux systems, the
19above command will produce a makefile.
20
21To control what types of projects are generated the -G parameter is added to
22the cmake command line. This argument must be followed by the name of a
23generator. Running cmake with the --help argument will list the available
24generators for your system.
25
26On Mac OS X you would run the following command to generate Xcode projects:
27
28$ cmake path/to/libwebm -G Xcode
29
30On a Windows box you would run the following command to generate Visual Studio
312013 projects:
32
33$ cmake path/to/libwebm -G "Visual Studio 12"
34
35To generate 64-bit Windows Visual Studio 2013 projects:
36
37$ cmake path/to/libwebm "Visual Studio 12 Win64"
38
39
40CMake Makefiles: Debugging and Optimization
41
42Unlike Visual Studio and Xcode projects, the build configuration for make builds
43is controlled when you run cmake. The following examples demonstrate various
44build configurations.
45
46Omitting the build type produces makefiles that use build flags containing
47neither optimization nor debug flags:
48$ cmake path/to/libwebm
49
50A makefile using release (optimized) flags is produced like this:
51$ cmake path/to/libwebm -DCMAKE_BUILD_TYPE=release
52
53A release build with debug info can be produced as well:
54$ cmake path/to/libwebm -DCMAKE_BUILD_TYPE=relwithdebinfo
55
56And your standard debug build will be produced using:
57$ cmake path/to/libwebm -DCMAKE_BUILD_TYPE=debug
Tom Finegan9299bbb2016-01-11 18:46:55 -080058
59
60Tests
61
62To enable libwebm tests add -DENABLE_TESTS=ON CMake generation command line. For
63example:
64
65$ cmake path/to/libwebm -G Xcode -DENABLE_TESTS=ON
66
67Libwebm tests depend on googletest. By default googletest is expected to be a
68sibling directory of the Libwebm repository. To change that, update your CMake
69command to be similar to the following:
70
71$ cmake path/to/libwebm -G Xcode -DENABLE_TESTS=ON \
72 -DGTEST_SRC_DIR=/path/to/googletest
73
74The tests rely upon the LIBWEBM_TEST_DATA_PATH environment variable to locate
75test input. The following example demonstrates running the muxer tests from the
76build directory:
77
Vignesh Venkatasubramaniana0d67d02017-03-07 11:34:39 -080078$ LIBWEBM_TEST_DATA_PATH=path/to/libwebm/testing/testdata ./mkvmuxer_tests
Tom Finegan9299bbb2016-01-11 18:46:55 -080079
Tom Finegane569ab02016-01-25 15:13:34 -050080Note: Libwebm Googletest integration was built with googletest from
81 https://github.com/google/googletest.git at git revision
Tom Finegan9299bbb2016-01-11 18:46:55 -080082 ddb8012eb48bc203aa93dcc2b22c1db516302b29.
83
Tom Finegan16524e82016-03-10 13:22:51 -080084
85CMake Include-what-you-use integration
86
87Include-what-you-use is an analysis tool that helps ensure libwebm includes the
88C/C++ header files actually in use. To enable the integration support
89ENABLE_IWYU must be turned on at cmake run time:
90
91$ cmake path/to/libwebm -G "Unix Makefiles" -DENABLE_IWYU=ON
92
93This adds the iwyu target to the build. To run include-what-you-use:
94
95$ make iwyu
96
97The following requirements must be met for ENABLE_IWYU to enable the iwyu
98target:
99
1001. include-what-you-use and iwyu_tool.py must be in your PATH.
1012. A python interpreter must be on the system and available to CMake.
102
103The values of the following variables are used to determine if the requirements
104have been met. Values to the right of the equals sign are what a successful run
105might look like:
106 iwyu_path=/path/to/iwyu_tool.py
107 iwyu_tool_path=/path/to/include-what-you-use
108 PYTHONINTERP_FOUND=TRUE
109
110An empty PYTHONINTERP_FOUND, or iwyu_path/iwyu_tool_path suffixed with NOTFOUND
111are failures.
112
113For Include-what-you-use setup instructions, see:
114https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/InstructionsForUsers.md
115
116If, when building the iwyu target, compile errors reporting failures loading
117standard include files occur, one solution can be found here:
118https://github.com/include-what-you-use/include-what-you-use/issues/100
119
120
Tom Finegana1cba342016-04-01 11:58:28 -0400121CMake cross compile
James Zern87443a62016-04-07 10:46:24 -0700122To cross compile libwebm for Windows using mingw-w64 run cmake with the
123following arguments:
Tom Finegana1cba342016-04-01 11:58:28 -0400124
James Zern87443a62016-04-07 10:46:24 -0700125$ cmake -DCMAKE_TOOLCHAIN_FILE=path/to/libwebm/build/mingw-w64_toolchain.cmake \
Tom Finegana1cba342016-04-01 11:58:28 -0400126 path/to/libwebm
127
James Zern87443a62016-04-07 10:46:24 -0700128Note1: As of this writing googletest will not build via mingw-w64 without
Tom Finegana1cba342016-04-01 11:58:28 -0400129disabling pthreads.
130googletest hash: d225acc90bc3a8c420a9bcd1f033033c1ccd7fe0
131
James Zern87443a62016-04-07 10:46:24 -0700132To build with tests when using mingw-w64 use the following arguments when
133running CMake:
Tom Finegana1cba342016-04-01 11:58:28 -0400134
James Zern87443a62016-04-07 10:46:24 -0700135$ cmake -DCMAKE_TOOLCHAIN_FILE=path/to/libwebm/build/mingw-w64_toolchain.cmake \
Tom Finegana1cba342016-04-01 11:58:28 -0400136 -DENABLE_TESTS=ON -Dgtest_disable_pthreads=ON path/to/libwebm
137
138Note2: i686-w64-mingw32 is the default compiler. This can be controlled using
139the MINGW_PREFIX variable:
140
James Zern87443a62016-04-07 10:46:24 -0700141$ cmake -DCMAKE_TOOLCHAIN_FILE=path/to/libwebm/build/mingw-w64_toolchain.cmake \
Tom Finegana1cba342016-04-01 11:58:28 -0400142 -DMINGW_PREFIX=x86_64-w64-mingw32 path/to/libwebm
Tom Finegan16524e82016-03-10 13:22:51 -0800143