mirror of https://github.com/CGAL/cgal
18 lines
317 B
C
18 lines
317 B
C
#ifndef CGAL_QT4_CONFIG_H
|
|
#define CGAL_QT4_CONFIG_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#ifdef CGAL_Qt4_DLL
|
|
# ifdef CGAL_Qt4_EXPORTS
|
|
# define CGAL_QT4_EXPORT Q_DECL_EXPORT
|
|
# else
|
|
# define CGAL_QT4_EXPORT Q_DECL_IMPORT
|
|
# endif
|
|
#else
|
|
// empty definition
|
|
# define CGAL_QT4_EXPORT
|
|
#endif
|
|
|
|
#endif // CGAL_QT4_CONFIG_H
|