mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +03:00
Redundant macros were removed. Defines _WIN32, __linux__ and LININTEL were removed from qt samples *.pro files
23 lines
383 B
C
Executable File
23 lines
383 B
C
Executable File
#ifndef COMMONSAMPLE_H
|
|
#define COMMONSAMPLE_H
|
|
|
|
#ifndef NO_COMMONSAMPLE_EXPORTS
|
|
#ifdef COMMONSAMPLE_EXPORTS
|
|
#ifdef _WIN32
|
|
#define COMMONSAMPLE_EXPORT __declspec( dllexport )
|
|
#else
|
|
#define COMMONSAMPLE_EXPORT
|
|
#endif
|
|
#else
|
|
#ifdef _WIN32
|
|
#define COMMONSAMPLE_EXPORT __declspec( dllimport )
|
|
#else
|
|
#define COMMONSAMPLE_EXPORT
|
|
#endif
|
|
#endif
|
|
#else
|
|
#define COMMONSAMPLE_EXPORT
|
|
#endif
|
|
|
|
#endif
|