blob: 3d3ad3cc3194b57ea36408e62ee7ecc5ca940406 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# This is a template of configuration file for MXE. See
# index.html for more extensive documentations.
# This variable controls the number of compilation processes
# within one package ("intra-package parallelism").
JOBS := 2
# This variable controls the targets that will build.
MXE_TARGETS := i686-w64-mingw32.shared
# The three lines below makes `make` build these "local packages" instead of all packages.
LOCAL_PKG_LIST := curl \
hidapi \
libftdi1 \
libgit2 \
libusb1 \
libxml2 \
libxslt \
libzip \
mdbtools \
nsis \
qtbase \
qtconnectivity \
qtdeclarative \
qtimageformats \
qtlocation \
qtmultimedia \
qtquickcontrols \
qtquickcontrols2 \
qtscript \
qtsvg \
qttools \
qttranslations \
qtwebkit \
qtwebview \
zstd
.DEFAULT local-pkg-list:
local-pkg-list: $(LOCAL_PKG_LIST)
|