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

[02/11] mesos git commit: Update CMake file to include the new state.proto file.

Update CMake file to include the new state.proto file.

Review: https://reviews.apache.org/r/46288


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

Branch: refs/heads/master
Commit: 181121fdb0dfc94a7788b5e1f2f8cd3d52cfc2d2
Parents: 2986b64
Author: Kapil Arya <ka...@mesosphere.io>
Authored: Fri Apr 15 19:16:40 2016 -0400
Committer: Kapil Arya <ka...@mesosphere.io>
Committed: Sun Apr 17 23:38:26 2016 -0400

----------------------------------------------------------------------
 src/CMakeLists.txt | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/181121fd/src/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 06f58c4..aabb33d 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -40,14 +40,15 @@ PROTOC_TO_INCLUDE_DIR(SCHEDULER        mesos/scheduler/scheduler)
 PROTOC_TO_INCLUDE_DIR(V1_SCHEDULER     mesos/v1/scheduler/scheduler)
 PROTOC_TO_INCLUDE_DIR(ISOLATOR         mesos/slave/isolator)
 PROTOC_TO_INCLUDE_DIR(OVERSUBSCRIPTION mesos/slave/oversubscription)
+PROTOC_TO_INCLUDE_DIR(STATE            mesos/state/state)
 PROTOC_TO_INCLUDE_DIR(URI              mesos/uri/uri)
 
 PROTOC_TO_SRC_DIR(REGISTRY master/registry)
 
-PROTOC_TO_SRC_DIR(MESSAGES messages/messages)
-PROTOC_TO_SRC_DIR(FLAGS    messages/flags)
-PROTOC_TO_SRC_DIR(LOG      messages/log)
-PROTOC_TO_SRC_DIR(STATE    messages/state)
+PROTOC_TO_SRC_DIR(MESSAGES          messages/messages)
+PROTOC_TO_SRC_DIR(FLAGS             messages/flags)
+PROTOC_TO_SRC_DIR(LOG               messages/log)
+PROTOC_TO_SRC_DIR(INTERNAL_STATE    messages/state)
 
 PROTOC_TO_SRC_DIR(MESSAGE slave/containerizer/mesos/provisioner/docker/message)
 PROTOC_TO_SRC_DIR(CNI_SPEC slave/containerizer/mesos/isolators/network/cni/spec)
@@ -74,10 +75,11 @@ set(MESOS_PROTOBUF_SRC
   ${SCHEDULER_PROTO_CC}
   ${V1_SCHEDULER_PROTO_CC}
   ${OVERSUBSCRIPTION_PROTO_CC}
+  ${STATE_PROTO_CC}
   ${MESSAGES_PROTO_CC}
   ${FLAGS_PROTO_CC}
   ${LOG_PROTO_CC}
-  ${STATE_PROTO_CC}
+  ${INERNAL_STATE_PROTO_CC}
   ${ISOLATOR_PROTO_CC}
   ${REGISTRY_PROTO_CC}
   ${MESSAGE_PROTO_CC}