You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ti...@apache.org on 2015/12/22 04:16:04 UTC

mesos git commit: Added docker-V1 and -V2 protos to src/CMakeLists.txt.

Repository: mesos
Updated Branches:
  refs/heads/master 2d0a9c0ce -> 9ae49b7f0


Added docker-V1 and -V2 protos to src/CMakeLists.txt.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/9ae49b7f
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/9ae49b7f
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/9ae49b7f

Branch: refs/heads/master
Commit: 9ae49b7f06c31e41edd449a2c94668a410ffbcb9
Parents: 2d0a9c0
Author: Till Toenshoff <to...@me.com>
Authored: Tue Dec 22 03:58:15 2015 +0100
Committer: Till Toenshoff <to...@me.com>
Committed: Tue Dec 22 03:58:15 2015 +0100

----------------------------------------------------------------------
 src/CMakeLists.txt | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/9ae49b7f/src/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index bdc45ae..8169fe4 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -44,6 +44,8 @@ PROTOC_TO_SRC_DIR(FLAGS    messages/flags)
 PROTOC_TO_SRC_DIR(STATE    messages/state)
 
 PROTOC_TO_SRC_DIR(MESSAGE slave/containerizer/mesos/provisioner/docker/message)
+PROTOC_TO_SRC_DIR(DOCKER_V1 slave/containerizer/mesos/provisioner/docker/v1)
+PROTOC_TO_SRC_DIR(DOCKER_V2 slave/containerizer/mesos/provisioner/docker/v2)
 
 set(MESOS_PROTOBUF_SRC
   ${MESOS_PROTO_CC}
@@ -67,6 +69,8 @@ set(MESOS_PROTOBUF_SRC
   ${ISOLATOR_PROTO_CC}
   ${REGISTRY_PROTO_CC}
   ${MESSAGE_PROTO_CC}
+  ${DOCKER_V1_PROTO_CC}
+  ${DOCKER_V2_PROTO_CC}
   ${URI_PROTO_CC}
   )