@@ -293,6 +293,7 @@
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
+ USER_HEADER_SEARCH_PATHS = include/;
};
name = Debug;
@@ -340,6 +341,7 @@
MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = NO;
name = Release;
@@ -9,7 +9,7 @@
#include <cxxtest/TestSuite.h>
-#include "const_propogating_ptr.hpp"
+#include "pointer/const_propogating_ptr.hpp"
class const_propogating_ptr_TestSuite : public CxxTest::TestSuite {
public:
-#include "const_ptr.hpp"
+#include "pointer/const_ptr.hpp"
class const_ptr_TestSuite : public CxxTest::TestSuite {
@@ -13,7 +13,7 @@
#ifndef DEBUG
#define DEBUG
#endif
-#include "maybe_null.hpp"
+#include "pointer/maybe_null.hpp"
class maybe_null_TestSuite : public CxxTest::TestSuite {
-#include "not_null.hpp"
+#include "pointer/not_null.hpp"
class not_null_TestSuite : public CxxTest::TestSuite {
@@ -11,7 +11,7 @@
#include <stdexcept>
-#include "value_ptr.hpp"
+#include "pointer/value_ptr.hpp"
struct copy_me {};
struct copy_me_throw {};
@@ -135,4 +135,4 @@ public:
}
TS_ASSERT_EQUALS(deleted, 2);
-};
+};