Changes between Version 30 and Version 31 of CompilationGuide/MSVC
- Timestamp:
- Jun 28, 2021, 1:01:33 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CompilationGuide/MSVC
v30 v31 176 176 === libopenh264 === 177 177 178 libopenh264 provides no configuration system, so the build parameters have to be specified either by editing the Makefile, or by setting the parameters on the commandline. 179 The following command will build the openh264 library with VC: 178 libopenh264 now provide meson build system, you can use meson to build with MSVC: 180 179 {{{ 181 make OS=msvc PREFIX=<PREFIX> install 180 meson setup --buildtype release --prefix=<PREFIX> --cmake-prefix-path=<PREFIX> . <PATH_TO_OPENH264> 181 ninja 182 ninja install 182 183 }}}
