aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmake
diff options
context:
space:
mode:
authorGravatar Rich Gowman <rgowman@google.com>2018-02-02 15:45:42 -0500
committerGravatar Rich Gowman <rgowman@google.com>2018-02-06 10:02:30 -0500
commitf12406716c6422c3f9c7186ea0990f8d7ff24536 (patch)
tree5ecddb5cf2900d7b7c87ac299afb628f52673195 /cmake
parent32266c5d1cf700b37900911860888bb106088220 (diff)
Eliminate sequencing dependencies
We originally had this as it was thought that cmake would spawn n*m jobs (where n is the number of jobs it was instructed to create, ie. make -j8, and m is the number of external projects.) However, it isn't supposed to do that, and doesn't appear to be doing that right now. So we'll remove this. If the problem re-appears, we'll add these back in. (Symptom was being unable to spawn /bin/sh.)
Diffstat (limited to 'cmake')
-rw-r--r--cmake/external/googletest.cmake2
-rw-r--r--cmake/external/grpc.cmake2
-rw-r--r--cmake/external/leveldb.cmake2
3 files changed, 0 insertions, 6 deletions
diff --git a/cmake/external/googletest.cmake b/cmake/external/googletest.cmake
index 56a5f13..b4e1b59 100644
--- a/cmake/external/googletest.cmake
+++ b/cmake/external/googletest.cmake
@@ -23,8 +23,6 @@ ExternalProject_GitSource(
ExternalProject_Add(
googletest
- DEPENDS
- FirebaseCore # for sequencing
${GOOGLETEST_GIT}
diff --git a/cmake/external/grpc.cmake b/cmake/external/grpc.cmake
index fb54960..225e65e 100644
--- a/cmake/external/grpc.cmake
+++ b/cmake/external/grpc.cmake
@@ -63,8 +63,6 @@ else()
ExternalProject_Add(
grpc
- DEPENDS
- leveldb # for sequencing
${GRPC_GIT}
diff --git a/cmake/external/leveldb.cmake b/cmake/external/leveldb.cmake
index 5b2068a..afff025 100644
--- a/cmake/external/leveldb.cmake
+++ b/cmake/external/leveldb.cmake
@@ -50,8 +50,6 @@ else()
ExternalProject_Add(
leveldb
- DEPENDS
- googletest # for sequencing
${LEVELDB_GIT}