]>
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: | |
1b48afd2 MW |
6 | * Copyright: (c) 2005 Michael Wetherell |
7 | * Licence: wxWindows licence | |
8 | */ | |
a84d5f9d MW |
9 | |
10 | #ifndef _WX_MSW_LIBRARIES_H_ | |
11 | #define _WX_MSW_LIBRARIES_H_ | |
12 | ||
1b48afd2 MW |
13 | /* |
14 | * Notes: | |
15 | * | |
16 | * In general the preferred place to add libs is in the bakefiles. This file | |
17 | * can be used where libs must be added conditionally, for those compilers that | |
18 | * support a way to do that. | |
19 | */ | |
a84d5f9d | 20 | |
1b48afd2 MW |
21 | /* VC++ 5 didn't include oleacc.lib, though it came with the PSDK */ |
22 | #if defined __VISUALC__ && (wxUSE_ACCESSIBILITY || __VISUALC__ >= 1200) | |
23 | #pragma comment(lib, "oleacc") | |
24 | #endif | |
25 | ||
26 | #endif /* _WX_MSW_LIBRARIES_H_ */ |