home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tlx501.zip / _BUILD.H next >
C/C++ Source or Header  |  1996-07-08  |  2KB  |  67 lines

  1. /****************************************************************************
  2.     $Id: _build.h 501.0 1995/03/07 12:26:50 RON Exp $
  3.  
  4.     Copyright (c) 1991-95 Tarma Software Research. All rights reserved.
  5.  
  6.     Project:    Tarma Library for C++ V5.0
  7.     Author:    Ron van der Wal
  8.  
  9.     Declarations for TLX internal use.
  10.  
  11.     $Log: _build.h $
  12.     Revision 501.0  1995/03/07 12:26:50  RON
  13.     Updated for TLX 5.01
  14.     Revision 1.3  1995/01/31 16:29:30  RON
  15.     Update for release 012
  16.     Added partial support for SunPro C++ compiler
  17.     Revision 1.2  1995/01/05  15:35:28  ron
  18.     Adapted to changes in compilation flags
  19.  
  20.     Revision 1.1  1994/11/16  15:24:26  ron
  21.     Initial revision
  22.  
  23. ****************************************************************************/
  24.  
  25. #ifndef _TLX_BUILD_H
  26. #define _TLX_BUILD_H
  27.  
  28. #ifndef _TLXBUILD
  29. #error This file is only for TLX builds, not for client compilations
  30. #endif
  31.  
  32. #ifndef _TLX_TLX_H
  33. #include <tlx\501\tlx.h>        // Basic declarations and definitions
  34. #endif
  35.  
  36. #ifdef _TLXDBG
  37. #undef    NDEBUG
  38. #undef    NTRACE
  39. #undef    NMODINFO
  40. #else
  41. #undef    NDEBUG
  42. #define    NDEBUG        1
  43. #define    NTRACE        1
  44. #define    NMODINFO    1
  45. #endif
  46.  
  47. #ifndef _TLX_ASSERTS_H
  48. #include <tlx\501\debug\asserts.h>
  49. #endif
  50. #ifndef _TLX_DEBUG_H
  51. #include <tlx\501\debug\debug.h>
  52. #endif
  53. #ifndef _TLX_MODINFO_H
  54. #include <tlx\501\debug\modinfo.h>
  55. #endif
  56. #ifndef _TLX_RTTI_H
  57. #include <tlx\501\rtti.h>
  58. #endif
  59. #ifndef _TLX_TRACE_H
  60. #include <tlx\501\debug\trace.h>
  61. #endif
  62. #ifndef _TLX_UTIL_H
  63. #include <tlx\501\util.h>
  64. #endif
  65.  
  66. #endif    // _TLX_BUILD_H
  67.