mirror of https://github.com/CGAL/cgal
17 lines
301 B
C++
17 lines
301 B
C++
#ifndef MAINWINDOW_CONFIG_H
|
|
#define MAINWINDOW_CONFIG_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#ifdef cgal_lab_EXPORTS
|
|
# define mainwindow_EXPORTS
|
|
#endif
|
|
|
|
#ifdef mainwindow_EXPORTS
|
|
# define MAINWINDOW_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define MAINWINDOW_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // MAINWINDOW_CONFIG_H
|