33 lines
884 B
C
33 lines
884 B
C
|
/****************************************************************************
|
||
|
* Core Library Version 1.7, August 2004
|
||
|
* Copyright (c) 1995-2004 Exact Computation Project
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This file is part of CGAL (www.cgal.org).
|
||
|
*
|
||
|
* $URL: https://github.com/CGAL/cgal/blob/v5.1/CGAL_Core/include/CGAL/CORE/Config.h $
|
||
|
* $Id: Config.h 26fb266 2019-10-19T16:28:33+02:00 Sébastien Loriot
|
||
|
* SPDX-License-Identifier: LGPL-3.0-or-later
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef _CORE_CONFIG_H_
|
||
|
#define _CORE_CONFIG_H_
|
||
|
|
||
|
// disable debug
|
||
|
//#define CORE_DISABLE_DEBUG
|
||
|
|
||
|
// disable inline functions
|
||
|
//#define CORE_DISABLE_INLINE
|
||
|
|
||
|
// disable memory pool
|
||
|
//#define CORE_DISABLE_MEMPOOL
|
||
|
|
||
|
// debug reference counting
|
||
|
//#define CORE_RC_DEBUG 1
|
||
|
|
||
|
#include <CGAL/auto_link/CORE.h>
|
||
|
|
||
|
#include <CGAL/export/CORE.h>
|
||
|
|
||
|
#endif // _CORE_CONFIG_H_
|