Skip to content

Commit

Permalink
Extensions: Windows fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ickby authored and wwmayer committed Oct 8, 2016
1 parent 558e128 commit 790413f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/App/DocumentObjectGroup.h
Expand Up @@ -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);

Expand Down
9 changes: 5 additions & 4 deletions src/App/PreCompiled.h
Expand Up @@ -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


Expand Down Expand Up @@ -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
6 changes: 4 additions & 2 deletions src/Gui/PreCompiled.h
Expand Up @@ -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)
Expand All @@ -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
Expand Down Expand Up @@ -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"

Expand Down

0 comments on commit 790413f

Please sign in to comment.