summaryrefslogtreecommitdiff
path: root/samwise/makeinclude/vacpp_setup.icc
blob: 69560afc89b72a94ac43f1289d073e7b14e7fd5c (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
//
// $Id$
//
// Define common settings shared by all Visual Age C++ projects
//

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")
        group platformLinkLibs = "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)
        group platformLinkLibs = null
}