summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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