diff options
author | Steve Huston <shuston@riverace.com> | 2000-02-23 23:06:47 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2000-02-23 23:06:47 +0000 |
commit | 078e494bb00d4cba69224a03c9c290d8e23c9a3b (patch) | |
tree | 470efd706838a90020156914c828533f49720d95 /tests/vacpp_setup.icc | |
parent | d29b7e71cedcc5f6f51f02830cb801fd56bf75d6 (diff) | |
download | ATCD-078e494bb00d4cba69224a03c9c290d8e23c9a3b.tar.gz |
ChangeLogTag:Wed Feb 23 17:02:34 2000 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'tests/vacpp_setup.icc')
-rw-r--r-- | tests/vacpp_setup.icc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/vacpp_setup.icc b/tests/vacpp_setup.icc new file mode 100644 index 00000000000..65107c9a02d --- /dev/null +++ b/tests/vacpp_setup.icc @@ -0,0 +1,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 = "libACEshr.a" +} |