21 lines
429 B
C
21 lines
429 B
C
#ifndef NUT_CONFIG_H
|
|
#define NUT_CONFIG_H
|
|
|
|
#if defined(NUT_SHARED) || !defined(NUT_STATIC)
|
|
# ifdef NUT_STATIC
|
|
# error "Both NUT_SHARED and NUT_STATIC defined, please make up your mind"
|
|
# endif
|
|
# ifndef NUT_SHARED
|
|
# define NUT_SHARED
|
|
# endif
|
|
# if defined(NUT_BUILD_LIB)
|
|
# define NUT_EXPORT Q_DECL_EXPORT
|
|
# else
|
|
# define NUT_EXPORT Q_DECL_IMPORT
|
|
# endif
|
|
#else
|
|
# define NUT_EXPORT
|
|
#endif
|
|
|
|
#endif // NUT_CONFIG_H
|