mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-07 03:20:41 +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
362 B
Plaintext
17 lines
362 B
Plaintext
# apt install mingw-w64 mingw-w64-tools
|
|
|
|
[binaries]
|
|
name = 'mingw'
|
|
c = 'x86_64-w64-mingw32-gcc'
|
|
cpp = 'x86_64-w64-mingw32-g++'
|
|
ar = 'x86_64-w64-mingw32-ar'
|
|
strip = 'x86_64-w64-mingw32-strip'
|
|
pkg-config = 'x86_64-w64-mingw32-pkg-config'
|
|
windres = 'x86_64-w64-mingw32-windres'
|
|
|
|
[host_machine]
|
|
system = 'windows'
|
|
cpu_family = 'x86'
|
|
cpu = 'x86_64'
|
|
endian = 'little'
|