forked from xmidt-org/nopoll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.mk.example
34 lines (27 loc) · 1.28 KB
/
config.mk.example
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
# optional nsis installation
# export makensis = c:/ARCHIV~1/NSIS/makensis.exe
export makensis = "C:/Program Files (x86)/NSIS/makensis.exe"
# Flags to compile OPENSSL
# Uncomment the following lines, placing the libraries following the path
# schema provided to get support OpenSSL
export OPENSSL_FLAGS = -DENABLE_TLS_SUPPORT -Ic:/OpenSSL-Win64/include/
export OPENSSL_LIBS = c:/OpenSSL-Win64/bin/libeay32.dll c:/OpenSSL-Win64/bin/ssleay32.dll
# export OPENSSL_FLAGS = -DENABLE_TLS_SUPPORT -Ic:/OpenSSL-098k/include/
# export OPENSSL_LIBS = c:/OpenSSL-098k/bin/libeay32.dll c:/OpenSSL-098k/bin/ssleay32.dll
# platform version prefix
# export version_prefix = -MinGW32
export version_prefix = -MinGW64
# platform bits
# export platform_bits = 32
export platform_bits = 64
# link indication for .lib files
# export link_machine = X86
export link_machine = "X64"
# /MACHINE:{ARM|EBC|IA64|MIPS|MIPS16|MIPSFPU|MIPSFPU16| SH4|THUMB|X64|X86}
# https://msdn.microsoft.com/en-us/library/5wy54dk2(v=vs.90).aspx
# force build with debug
# export show_debug = -DSHOW_DEBUG_LOG
export show_debug =
# cc compiler to use usually gcc.exe
# export CC = gcc.exe
export CC = x86_64-w64-mingw32-gcc.exe