Extensions: Windows fixes

This commit is contained in:
Stefan Tröger
2016-09-22 17:42:44 +02:00
committed by wmayer
parent 558e128b39
commit 790413fdce
3 changed files with 10 additions and 7 deletions

View File

@@ -34,7 +34,7 @@
namespace App
{
class DocumentObjectGroup : public DocumentObject, public GroupExtension {
class AppExport DocumentObjectGroup : public DocumentObject, public GroupExtension {
PROPERTY_HEADER_WITH_EXTENSIONS(App::DocumentObjectGroup);

View File

@@ -33,6 +33,7 @@
#pragma warning( disable : 4275 )
#pragma warning( disable : 4503 )
#pragma warning( disable : 4786 ) // specifier longer then 255 chars
#pragma warning( disable : 4250 ) // virtual inheritance warning
#endif
@@ -81,11 +82,11 @@
#include <boost/program_options.hpp>
//namespace po = boost::program_options;
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/operations.hpp>
#include <boost/filesystem/exception.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/operations.hpp>
#include <boost/filesystem/exception.hpp>
#endif //_PreComp_
#endif // APP_PRECOMPILED_H

View File

@@ -25,7 +25,7 @@
#define GUI_PRECOMPILED_H
#include <FCConfig.h>
#ifdef _PreComp_
// here get the warnings of too long specifiers disabled (needed for VC6)
@@ -35,6 +35,7 @@
#pragma warning( disable : 4275 )
#pragma warning( disable : 4503 )
#pragma warning( disable : 4786 ) // specifier longer then 255 chars
#pragma warning( disable : 4250 ) // virtual inheritance warning
#endif
// standard
@@ -81,7 +82,8 @@
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/operations.hpp>
#include <boost/filesystem/exception.hpp>
#include "InventorAll.h"
#include "Qt4All.h"