forked from imapsync/imapsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_exe.bat
30 lines (23 loc) · 941 Bytes
/
build_exe.bat
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
REM $Id: build_exe.bat,v 1.21 2013/10/17 00:54:53 gilles Exp gilles $
@ECHO OFF
ECHO Building imapsync.exe
cd /D %~dp0
CALL .\examples\install_modules.bat
perl -mMail::IMAPClient -mIO::Socket -mIO::Socket::SSL -mIO::Socket::IP ^
-mDigest::MD5 -mDigest::HMAC_MD5 -mDigest::HMAC_SHA1 ^
-mTerm::ReadKey -mFile::Spec -mAuthen::NTLM ^
-mTime::Local -mURI::Escape -mData::Uniqid ^
-mFile::Copy::Recursive -e ''
cd
@ECHO ON
pp -o imapsync.exe ^
--link libeay32_.dll --link libssl32_.dll ^
--link zlib1_.dll --link ssleay32_.dll ^
-M Mail::IMAPClient -M IO::Socket -M IO::Socket::IP -M IO::Socket::SSL -M IO::Socket::INET ^
-M Digest::MD5 -M Digest::HMAC_MD5 -M Digest::HMAC_SHA1 ^
-M Term::ReadKey -M Authen::NTLM ^
-M Time::Local -M URI::Escape -M Data::Uniqid ^
-M File::Copy::Recursive ^
imapsync
echo Done building imapsync.exe
pause