suppress useless msvc warning

This commit is contained in:
Stefan Tröger
2013-10-30 21:11:55 +01:00
parent 348f4c5476
commit bd484ca7ca
2 changed files with 8 additions and 4 deletions

View File

@@ -23,6 +23,10 @@
#ifndef SOLVER_H
#define SOLVER_H
#include "opendcm/core.hpp"
#include "opendcm/module3d.hpp"
#include "opendcm/modulepart.hpp"
#include <Base/Placement.h>
#include <gp_Pnt.hxx>
@@ -30,10 +34,6 @@
#include <gp_Pln.hxx>
#include <gp_Cylinder.hxx>
#include "opendcm/core.hpp"
#include "opendcm/module3d.hpp"
#include "opendcm/modulepart.hpp"
struct gp_pnt_accessor {
template<typename Scalar, int ID, typename T>

View File

@@ -6,6 +6,10 @@ if(FREECAD_ASSEMBLY_SOLVER_LOGS)
add_definitions(-DUSE_LOGGING)
endif(FREECAD_ASSEMBLY_SOLVER_LOGS)
if(MSVC)
add_definitions(/wd4503)
endif(MSVC)
add_subdirectory(App)
if(BUILD_GUI)
add_subdirectory(Gui)