Path: Add libarea to PCH

This commit is contained in:
Abdullah Tahiri
2019-05-03 14:33:32 +02:00
committed by abdullahtahiriyo
parent 45f44a2d9f
commit 635ce5cd81
2 changed files with 8 additions and 1 deletions

View File

@@ -92,7 +92,11 @@
#include <Mod/Part/App/FaceMakerBullseye.h>
#include <Mod/Part/App/CrossSection.h>
#include "Area.h"
#include "../libarea/Area.h"
#ifndef _PreComp_
# include "../libarea/Area.h"
#endif
namespace bg = boost::geometry;
namespace bgi = boost::geometry::index;

View File

@@ -56,6 +56,9 @@
#include <cinttypes>
#include <iomanip>
// Libarea
#include "../libarea/Area.h"
// Python
#include <Python.h>