From: Włodzimierz Skiba Date: Wed, 31 May 2006 12:18:02 +0000 (+0000) Subject: PCH support for !MSW/!autoconf platforms. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3c9e913f6f38abd072cab9ed88437d343a7ac934 PCH support for !MSW/!autoconf platforms. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39484 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/wxprec.h b/include/wx/wxprec.h index 0a6f470002..0c1c73d22d 100644 --- a/include/wx/wxprec.h +++ b/include/wx/wxprec.h @@ -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.