2019-01-24 21:45:54 +00:00
|
|
|
# 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").
|
2020-10-28 21:19:45 +00:00
|
|
|
JOBS := 8
|
2019-01-24 21:45:54 +00:00
|
|
|
|
|
|
|
# This variable controls the targets that will build.
|
2020-10-30 18:15:34 +00:00
|
|
|
MXE_TARGETS := x86_64-w64-mingw32.shared i686-w64-mingw32.shared
|
2019-01-24 21:45:54 +00:00
|
|
|
|
|
|
|
# The three lines below makes `make` build these "local packages" instead of all packages.
|
2020-10-28 21:19:45 +00:00
|
|
|
# The ordering of the list appears weird, but this seems to help to get the build done
|
|
|
|
# faster on a massively parallel machine to get some of the bottleneck packages built as
|
|
|
|
# early as possible
|
|
|
|
LOCAL_PKG_LIST := gcc \
|
|
|
|
openssl \
|
|
|
|
libmysqlclient \
|
|
|
|
postgresql \
|
|
|
|
qtbase \
|
|
|
|
qtwebkit \
|
|
|
|
nsis \
|
|
|
|
curl \
|
2020-05-30 11:21:22 +00:00
|
|
|
libxml2 \
|
|
|
|
libxslt \
|
|
|
|
libzip \
|
2020-10-28 21:19:45 +00:00
|
|
|
libusb1 \
|
|
|
|
hidapi \
|
|
|
|
libgit2 \
|
|
|
|
libftdi1 \
|
2020-05-30 11:21:22 +00:00
|
|
|
mdbtools \
|
|
|
|
qtconnectivity \
|
|
|
|
qtdeclarative \
|
|
|
|
qtimageformats \
|
|
|
|
qtlocation \
|
|
|
|
qtmultimedia \
|
|
|
|
qtquickcontrols \
|
|
|
|
qtquickcontrols2 \
|
|
|
|
qtsvg \
|
|
|
|
qttools \
|
|
|
|
qttranslations \
|
|
|
|
zstd
|
2019-01-24 21:45:54 +00:00
|
|
|
.DEFAULT local-pkg-list:
|
|
|
|
local-pkg-list: $(LOCAL_PKG_LIST)
|