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
|
// $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",
"Test_Output.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",
"libTest_Output.a"
}
|