Selaa lähdekoodia

Add include to header path.

Sam Jaffe 5 vuotta sitten
vanhempi
commit
79453337d7

+ 2 - 0
pointers.xcodeproj/project.pbxproj

@@ -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;
 				SDKROOT = macosx;
+				USER_HEADER_SEARCH_PATHS = include/;
 			};
 			name = Release;
 		};

+ 1 - 1
test/const_propogating_ptr.t.h

@@ -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:

+ 1 - 1
test/const_ptr.t.h

@@ -9,7 +9,7 @@
 
 #include <cxxtest/TestSuite.h>
 
-#include "const_ptr.hpp"
+#include "pointer/const_ptr.hpp"
 
 class const_ptr_TestSuite : public CxxTest::TestSuite {
 public:

+ 1 - 1
test/maybe_null.t.h

@@ -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 {
 public:

+ 1 - 1
test/not_null.t.h

@@ -9,7 +9,7 @@
 
 #include <cxxtest/TestSuite.h>
 
-#include "not_null.hpp"
+#include "pointer/not_null.hpp"
 
 class not_null_TestSuite : public CxxTest::TestSuite {
 public:

+ 2 - 2
test/value_ptr.t.h

@@ -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);
   }
-};
+};