Bug 57388. NOT PART OF BUILD - Re-adding because old dir had a space in it.

This commit is contained in:
ccarlen%netscape.com 2000-10-26 21:17:23 +00:00
Родитель e9d832f509
Коммит 638ea12ee6
3 изменённых файлов: 97 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,11 @@
//--------------------------------------------------------------------------------
//
// BrowserHeaders.pch++
//
// Includes BrowserHeaders.pch.h, which generates or loads the precompiled header file
// Flags could be set here to control that compilation
//
//--------------------------------------------------------------------------------
#define wantDebugging 0
#include "BrowserHeaders.pch.h"

Просмотреть файл

@ -0,0 +1,75 @@
// ===============================================================================
// Appearance_DebugHeaders.pch++ ©1995-1998 Metrowerks Inc. All rights reserved.
// ===============================================================================
#ifndef __BROWSERHEADERS_PCH_H__
#define __BROWSERHEADERS_PCH_H__
//
// Source for precompiled header for PowerPlant headers
//
// This file #includes most header files for the PowerPlant library,
// as well as most of the Toolbox headers used by the PowerPlant library
// with all debugging symbols defined.
#if __option(precompile)
#if __MWERKS__ >= 0x2100
// slightly larger but much faster generation of pch files
#pragma faster_pch_gen on
#endif
// Option for using PowerPlant namespace
#define PP_Uses_PowerPlant_Namespace 0 // off, don't use PowerPlant namespace
// establish some essential PowerPlant macros:
#define PP_StdDialogs_Option PP_StdDialogs_ClassicOnly // use classic standard dialog implementation
#include <ControlDefinitions.h>
// include powerplant headers
#if wantDebugging
#include <PP_DebugHeaders.cp>
#else
#include <PP_ClassHeaders.cp>
#endif
#if wantDebugging
#define DEBUG 1
#else
#undef DEBUG
#endif
#include "DefinesMac.h"
#include "DefinesMozilla.h"
// Support for automatically naming the precompiled header file ...
#if __POWERPC__
#if wantDebugging
#pragma precompile_target "BrowserHeadersDebug_pch"
#else
#pragma precompile_target "BrowserHeaders_pch"
#endif
#else
#error "target currently unsupported"
#endif
#else
// Load the precompiled header file
#if __POWERPC__
#if wantDebugging
#include "BrowserHeadersDebug_pch"
#else
#include "BrowserHeaders_pch"
#endif
#else
#error "target currently unsupported"
#endif
#endif
#endif // __BROWSERHEADERS_PCH_H__

Просмотреть файл

@ -0,0 +1,11 @@
//--------------------------------------------------------------------------------
//
// BrowserHeadersDebug.pch++
//
// Includes BrowserHeaders.pch.h, which generates or loads the precompiled header file
// Flags could be set here to control that compilation
//
//--------------------------------------------------------------------------------
#define wantDebugging 1
#include "BrowserHeaders.pch.h"