summaryrefslogtreecommitdiff
path: root/tests/vacpp_setup.icc
blob: 377b3e61cc59a2f5f6602b72624d99b5d3da9b6a (plain)
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
// $Id$
//
// Visual Age C++ setups for the configurations used to build tests. The
// common options and platform-dependent things are set here and then included
// into the individual test configuration files.

if $__TOS_WIN__ {
        option PlatformOptions =
                 define ("WIN32","1"),
                 define ("_WINDOWS","1"),
                 define ("__ACE_INLINE__","0"),
                 define ("ACE_HAS_DLL","0"),
                 define ("ACE_HAS_WINSOCK2","1")
        platformLibSearchPath = '..\ace'
        group platformLinkLibs = "aced.lib",
                                 "advapi32.lib",
                                 "user32.lib",
                                 "ws2_32.lib",
                                 "wsock32.lib",
                                 "mswsock.lib"
}
if $__TOS_AIX__ {
        option PlatformOptions =
                defaults(xlC_r),
                gen(check,bounds,no),
                link(typecheck,yes),
                opt(level, 3),
                gen(enumsize, small)
        platformLibSearchPath = "../ace"
        group platformLinkLibs = "libACE.a"
}