]>
Commit | Line | Data |
---|---|---|
1b48afd2 MW |
1 | /* |
2 | * Name: wx/msw/libraries.h | |
3 | * Purpose: Pragmas for linking libs conditionally | |
4 | * Author: Michael Wetherell | |
5 | * Modified by: | |
6 | * RCS-ID: $Id$ | |
7 | * Copyright: (c) 2005 Michael Wetherell | |
8 | * Licence: wxWindows licence | |
9 | */ | |
a84d5f9d MW |
10 | |
11 | #ifndef _WX_MSW_LIBRARIES_H_ | |
12 | #define _WX_MSW_LIBRARIES_H_ | |
13 | ||
1b48afd2 MW |
14 | /* |
15 | * Notes: | |
16 | * | |
17 | * In general the preferred place to add libs is in the bakefiles. This file | |
18 | * can be used where libs must be added conditionally, for those compilers that | |
19 | * support a way to do that. | |
20 | */ | |
a84d5f9d | 21 | |
1b48afd2 MW |
22 | /* VC++ 5 didn't include oleacc.lib, though it came with the PSDK */ |
23 | #if defined __VISUALC__ && (wxUSE_ACCESSIBILITY || __VISUALC__ >= 1200) | |
24 | #pragma comment(lib, "oleacc") | |
25 | #endif | |
26 | ||
27 | #endif /* _WX_MSW_LIBRARIES_H_ */ |