Skip to content

Commit a0de3ac

Browse files
committed
Use newer versions of support libraries (fixes for Hopper!). Move all dependencies to dedicated folder.
1 parent 63582b5 commit a0de3ac

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

.gitmodules

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
[submodule "tests/googletest"]
2-
path = tests/googletest
2+
path = third_party/googletest
33
url = https://github.com/google/googletest.git
44
ignore = dirty
5+
[submodule "third_party/libcudacxx"]
6+
path = third_party/libcudacxx
7+
url = https://github.com/NVIDIA/libcudacxx
8+
[submodule "third_party/thrust"]
9+
path = third_party/thrust
10+
url = https://github.com/NVIDIA/thrust.git

CMakeLists.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,14 @@ endforeach()
6666

6767
include_directories(
6868
${PROJECT_SOURCE_DIR}/include
69-
${PROJECT_SOURCE_DIR}/tests/googletest/googletest/include
69+
${PROJECT_SOURCE_DIR}/third_party/libcudacxx/include
70+
${PROJECT_SOURCE_DIR}/third_party/thrust/include
71+
${PROJECT_SOURCE_DIR}/third_party/googletest/googletest/include
7072
)
7173

72-
ADD_SUBDIRECTORY(tests/googletest)
74+
ADD_SUBDIRECTORY(third_party/googletest)
75+
ADD_SUBDIRECTORY(third_party/libcudacxx)
76+
ADD_SUBDIRECTORY(third_party/thrust)
7377

7478
link_directories(
7579
)

third_party/libcudacxx

Submodule libcudacxx added at 88a91da

third_party/thrust

Submodule thrust added at cf0fc21

0 commit comments

Comments
 (0)