mirror of https://github.com/CGAL/cgal
22 lines
376 B
C
22 lines
376 B
C
#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
|
|
|
|
#ifdef _MSC_VER
|
|
# define CGAL_LIB_NAME core++
|
|
# include "CGAL/auto_link.h"
|
|
#endif
|
|
|
|
#endif // _CORE_CONFIG_H_
|