diff options
Diffstat (limited to 'project2/json')
-rw-r--r-- | project2/json/Jamfile.jam | 1 | ||||
-rw-r--r-- | project2/json/conversion.cpp | 2 | ||||
-rw-r--r-- | project2/json/couchSession.cpp | 2 | ||||
-rw-r--r-- | project2/json/parse.cpp | 2 | ||||
-rw-r--r-- | project2/json/presenter-p.cpp | 2 | ||||
-rw-r--r-- | project2/json/presenter.cpp | 2 | ||||
-rw-r--r-- | project2/json/serialize.cpp | 2 |
7 files changed, 7 insertions, 6 deletions
diff --git a/project2/json/Jamfile.jam b/project2/json/Jamfile.jam index e9ae7b5..7453a04 100644 --- a/project2/json/Jamfile.jam +++ b/project2/json/Jamfile.jam @@ -13,6 +13,7 @@ cpp-pch pch : pch.hpp : lib p2json : pch [ glob *.cpp ] : + <include>. <include>../libmisc <library>glibmm <library>../common//p2common diff --git a/project2/json/conversion.cpp b/project2/json/conversion.cpp index 0f5a2fa..1fae0d3 100644 --- a/project2/json/conversion.cpp +++ b/project2/json/conversion.cpp @@ -1,4 +1,4 @@ -#include "pch.hpp" +#include <pch.hpp> #include "conversion.h" #include <boost/date_time/posix_time/posix_time.hpp> diff --git a/project2/json/couchSession.cpp b/project2/json/couchSession.cpp index b4b3f6b..01e23ba 100644 --- a/project2/json/couchSession.cpp +++ b/project2/json/couchSession.cpp @@ -1,4 +1,4 @@ -#include "pch.hpp" +#include <pch.hpp> #include "curlHelper.h" #include "safeMapFind.h" #include "exceptions.h" diff --git a/project2/json/parse.cpp b/project2/json/parse.cpp index d9da9e9..cb41dd2 100644 --- a/project2/json/parse.cpp +++ b/project2/json/parse.cpp @@ -1,4 +1,4 @@ -#include "pch.hpp" +#include <pch.hpp> #include "json.h" #include <stdio.h> diff --git a/project2/json/presenter-p.cpp b/project2/json/presenter-p.cpp index b501a8a..3cb5bf8 100644 --- a/project2/json/presenter-p.cpp +++ b/project2/json/presenter-p.cpp @@ -1,4 +1,4 @@ -#include "pch.hpp" +#include <pch.hpp> #include "presenter.h" class Json_P_Presenter : public JsonPresenter { diff --git a/project2/json/presenter.cpp b/project2/json/presenter.cpp index 40859e2..111ae5c 100644 --- a/project2/json/presenter.cpp +++ b/project2/json/presenter.cpp @@ -1,4 +1,4 @@ -#include "pch.hpp" +#include <pch.hpp> #include "../common/presenter.h" #include "json.h" #include "conversion.h" diff --git a/project2/json/serialize.cpp b/project2/json/serialize.cpp index 390d45e..a1ba1f6 100644 --- a/project2/json/serialize.cpp +++ b/project2/json/serialize.cpp @@ -1,4 +1,4 @@ -#include "pch.hpp" +#include <pch.hpp> #include "json.h" #include <stdio.h> #include <boost/foreach.hpp> |