PCH support for !MSW/!autoconf platforms.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39484 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2006-05-31 12:18:02 +00:00
parent b9c94fbf31
commit 3c9e913f6f

View File

@ -14,13 +14,13 @@
// check if to use precompiled headers: do it for most Windows compilers unless
// explicitly disabled by defining NOPCH
#if ( defined(__WXMSW__) && \
( defined(__BORLANDC__) || \
defined(__VISUALC__) || \
defined(__DIGITALMARS__) || \
defined(__WATCOMC__) ) ) || \
defined(__VISAGECPP__) || \
defined(__MWERKS__)
#if defined(__VISUALC__) || \
defined(__DMC__) || \
defined(__VISAGECPP__) || \
defined(__MWERKS__) || \
defined(__WATCOMC__) || \
defined(__BORLANDC__)
// If user did not request NOCPH and we're not building using configure
// then assume user wants precompiled headers.