ncbiconf.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbiconf.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/30 16:29:53  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef FORWARDING_NCBICONF_H
  10. #define FORWARDING_NCBICONF_H
  11. /*  $Id: ncbiconf.h,v 1000.0 2003/10/30 16:29:53 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors: Denis Vakatov, Aaron Ucko
  37.  *
  38.  */
  39. /** @file ncbiconf.h
  40.  ** Front end for a platform-specific configuration summary when using
  41.  ** project files.
  42.  **/
  43. #ifdef _MSC_VER
  44. #  include <corelib/config/ncbiconf_msvc.h>
  45. #elif defined(__MWERKS__)
  46. #  include <corelib/config/ncbiconf_mwerks.h>
  47. #else
  48. /*
  49.  * Otherwise, we expect to be using the Unix build system, in which case
  50.  * configure should have generated an appropriate ncbiconf.h in a
  51.  * build-specific .../inc directory that should have appeared in an earlier
  52.  * -I directive.  If you're using our recommended makefile framework per
  53.  * http://www.ncbi.nlm.nih.gov/books/bv.fcgi?call=bv.View..ShowSection&rid=toolkit.chapter.ch_build
  54.  * this should happen automatically; otherwise, make sure your flags are as
  55.  * ... -I.../c++/Release/inc -I.../c++/include ...
  56.  * rather than vice versa.  (Substitute the actual configuration you're
  57.  * using for Release, of course.)
  58.  *
  59.  * If you encounter this error in-house and are listing the directories in
  60.  * the right order, it's possible that the build name is a symlink that has
  61.  * gone missing; if so, please notify cpp-core so we can restore it.
  62.  */
  63. #  error Configuration-specific <ncbiconf.h> not found; check your search path.
  64. #endif
  65. /*
  66.  * ===========================================================================
  67.  *
  68.  * $Log: ncbiconf.h,v $
  69.  * Revision 1000.0  2003/10/30 16:29:53  gouriano
  70.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  71.  *
  72.  * Revision 1.2  2003/09/23 20:44:40  ucko
  73.  * Fix the C++-style comment that slipped in.
  74.  * Add a long comment explaining how to avoid triggering the #error on Unix.
  75.  *
  76.  * Revision 1.1  2003/09/23 15:56:50  ucko
  77.  * Added as a smart forwarding header; should do away with the need to
  78.  * copy a version in when using project files.
  79.  *
  80.  * ===========================================================================
  81.  */
  82. #endif  /* FORWARDING_NCBICONF_H */