+ fix major flaw in Spreadsheet module: do not include precompiled header in other header files

+ fix linking errors in drawing module
This commit is contained in:
wmayer
2016-01-04 16:03:00 +01:00
parent b39093fd72
commit 3fb195b2c7
8 changed files with 15 additions and 14 deletions

View File

@@ -28,13 +28,15 @@
// Exporting of App classes
#ifdef FC_OS_WIN32
# define DrawingExport __declspec(dllexport)
# define PartExport __declspec(dllimport)
# define MeshExport __declspec(dllimport)
# define DrawingExport __declspec(dllexport)
# define PartExport __declspec(dllimport)
# define MeshExport __declspec(dllimport)
# define SpreadsheetExport __declspec(dllimport)
#else // for Linux
# define DrawingExport
# define PartExport
# define MeshExport
# define PartExport
# define MeshExport
# define SpreadsheetExport
#endif
#ifdef _PreComp_

View File

@@ -32,10 +32,12 @@
# define DrawingExport __declspec(dllimport)
# define PartExport __declspec(dllimport)
# define DrawingGuiExport __declspec(dllexport)
# define SpreadsheetExport __declspec(dllimport)
#else // for Linux
# define DrawingExport
# define PartExport
# define DrawingGuiExport
# define SpreadsheetExport
#endif
#ifdef _MSC_VER