~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to extra/yassl/testsuite/make.bat

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
REM Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
 
2
REM 
 
3
REM This program is free software; you can redistribute it and/or modify
 
4
REM it under the terms of the GNU General Public License as published by
 
5
REM the Free Software Foundation; version 2 of the License.
 
6
REM 
 
7
REM This program is distributed in the hope that it will be useful,
 
8
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
REM GNU General Public License for more details.
 
11
REM 
 
12
REM You should have received a copy of the GNU General Public License
 
13
REM along with this program; if not, write to the Free Software
 
14
REM Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 
15
 
 
16
REM quick and dirty build file for testing different MSDEVs
 
17
setlocal 
 
18
 
 
19
set myFLAGS= /I../include /I../taocrypt/include /I../taocrypt/mySTL /c /W3 /G6 /O2 /MT /D"WIN32" /D"NO_MAIN_DRIVER"
 
20
 
 
21
cl %myFLAGS% testsuite.cpp
 
22
cl %myFLAGS% ../examples/client/client.cpp
 
23
cl %myFLAGS% ../examples/echoclient/echoclient.cpp
 
24
cl %myFLAGS% ../examples/server/server.cpp
 
25
cl %myFLAGS% ../examples/echoserver/echoserver.cpp
 
26
cl %myFLAGS% ../taocrypt/test/test.cpp
 
27
 
 
28
link.exe  /out:testsuite.exe ../src/yassl.lib ../taocrypt/src/taocrypt.lib testsuite.obj client.obj server.obj echoclient.obj echoserver.obj test.obj advapi32.lib Ws2_32.lib
 
29