mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-11 01:10:32 +00:00
67f356f881
Install all the prebuilt dependencies for Windows to a specific folder, and use meson command line options to specify their location. This removes crossbuild-specific code from the meson scripts and will simplify dependency upgrades. PR #4460 <https://github.com/Genymobile/scrcpy/pull/4460>
17 lines
348 B
Plaintext
17 lines
348 B
Plaintext
# apt install mingw-w64 mingw-w64-tools
|
|
|
|
[binaries]
|
|
name = 'mingw'
|
|
c = 'i686-w64-mingw32-gcc'
|
|
cpp = 'i686-w64-mingw32-g++'
|
|
ar = 'i686-w64-mingw32-ar'
|
|
strip = 'i686-w64-mingw32-strip'
|
|
pkg-config = 'i686-w64-mingw32-pkg-config'
|
|
windres = 'i686-w64-mingw32-windres'
|
|
|
|
[host_machine]
|
|
system = 'windows'
|
|
cpu_family = 'x86'
|
|
cpu = 'i686'
|
|
endian = 'little'
|