Changes between Version 30 and Version 31 of CompilationGuide/MSVC


Ignore:
Timestamp:
Jun 28, 2021, 1:01:33 AM (5 years ago)
Author:
lifegpc
Comment:

libopenh264 now provide meson

Legend:

Unmodified
Added
Removed
Modified
  • CompilationGuide/MSVC

    v30 v31  
    176176=== libopenh264 ===
    177177
    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:
     178libopenh264 now provide meson build system, you can use meson to build with MSVC:
    180179{{{
    181 make OS=msvc PREFIX=<PREFIX> install
     180meson setup --buildtype release --prefix=<PREFIX> --cmake-prefix-path=<PREFIX> . <PATH_TO_OPENH264>
     181ninja
     182ninja install
    182183}}}