summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-10-02 21:47:40 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2015-10-02 21:47:40 +0100
commit4075c742f0a3bc90f895585083de3a646434de9e (patch)
tree15a2bafa13fb5438363034a8e4562759691230ca
parentAdd new projects to default build (diff)
downloadproject2-4075c742f0a3bc90f895585083de3a646434de9e.tar.bz2
project2-4075c742f0a3bc90f895585083de3a646434de9e.tar.xz
project2-4075c742f0a3bc90f895585083de3a646434de9e.zip
Slash the amount of inclusion in pre-compiled headers
-rw-r--r--project2/basics/Jamfile.jam1
-rw-r--r--project2/basics/pch.hpp15
2 files changed, 3 insertions, 13 deletions
diff --git a/project2/basics/Jamfile.jam b/project2/basics/Jamfile.jam
index f8ea872..e1be712 100644
--- a/project2/basics/Jamfile.jam
+++ b/project2/basics/Jamfile.jam
@@ -13,6 +13,7 @@ cpp-pch pch : pch.hpp :
;
lib p2basics :
+ pch
[ glob-tree *.cpp : unittests ]
:
<include>.
diff --git a/project2/basics/pch.hpp b/project2/basics/pch.hpp
index 67ec9b4..2bbfaf4 100644
--- a/project2/basics/pch.hpp
+++ b/project2/basics/pch.hpp
@@ -2,25 +2,14 @@
#ifndef COMMON_PCH
#define COMMON_PCH
-#include <aggregate.h>
#include <algorithm>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/bind.hpp>
#include <boost/date_time.hpp>
-#include <boost/filesystem/operations.hpp>
-#include <commonObjects.h>
-#include <iHaveParameters.h>
#include <iostream>
#include <list>
-#include <logger.h>
-#include <rowProcessor.h>
-#include <rowSet.h>
-#include <safeMapFind.h>
-#include <scriptLoader.h>
-#include <scripts.h>
-#include <scriptStorage.h>
-#include <test.h>
-#include <variables.h>
+#include <boost/variant/variant_fwd.hpp>
+#include <boost/function/function_fwd.hpp>
#endif
#endif