MW_TclTestHeader.pch
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * MW_TclTestHeader.pch --
  3.  *
  4.  *  This file is the source for a pre-compilied header that gets used
  5.  *  for all files in the Tcl projects.  This make compilies go a bit
  6.  *  faster.  This file is only intended to be used in the MetroWerks
  7.  *  CodeWarrior environment.  It essentially acts as a place to set 
  8.  *  compiler flags.  See MetroWerks documention for more details.
  9.  *
  10.  * Copyright (c) 1995-1997 Sun Microsystems, Inc.
  11.  *
  12.  * See the file "license.terms" for information on usage and redistribution
  13.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  14.  *
  15.  * RCS: @(#) $Id: MW_TclTestHeader.pch,v 1.2 2001/11/23 01:26:23 das Exp $
  16.  */
  17. /*
  18.  * To use the compilied header you need to set the "Prefix file" in
  19.  * the "C/C++ Language" preference panel to point to the created
  20.  * compilied header.  The name of the header depends on the
  21.  * architecture we are compiling for (see the code below).  For
  22.  * example, for a 68k app the prefix file should be: MW_TclHeader68K.
  23.  */
  24. #if __POWERPC__
  25. #pragma precompile_target "MW_TclTestHeaderPPC"
  26. #elif __CFM68K__
  27. #pragma precompile_target "MW_TclTestHeaderCFM68K"
  28. #else
  29. #pragma precompile_target "MW_TclTestHeader68K"
  30. #endif
  31. #define BUILD_tcl 1
  32. #define STATIC_BUILD 1
  33. #define TCL_DEBUG 1
  34. #define TCL_THREADS 1
  35. #include "MW_TclHeaderCommon.h"