blob: be6f4050a2cfb128283505a31d99788494b6e325 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import os
from cerbero.config import Platform, Architecture, Distro, DistroVersion
target_platform=Platform.WINDOWS
target_distro=Distro.WINDOWS
target_distro_version=DistroVersion.WINDOWS_7
target_arch=Architecture.X86_64
cache_file='mingw-w64-win'
prefix=os.path.expanduser('~/mingw/windows/w64')
sources=os.path.expanduser('~/cerbero/sources/mingw-w64-win')
toolchain_prefix=os.path.expanduser('~/mingw/linux/w64/')
build='x86_64-pc-linux-gnu'
|