CMake: Normalized some function capitalization. CMake isn't case sensitive about many of its functions, but our codebase generally uses lowercase when calling built-in CMake functions.
Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/5d1df5d9 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/5d1df5d9 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/5d1df5d9 Branch: refs/heads/master Commit: 5d1df5d98e9faea542ca95f51fe1a3ccc2da6457 Parents: eb08f08 Author: Joseph Wu <[email protected]> Authored: Thu Mar 2 14:03:50 2017 -0800 Committer: Joseph Wu <[email protected]> Committed: Thu Mar 9 11:14:29 2017 -0800 ---------------------------------------------------------------------- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/5d1df5d9/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/CMakeLists.txt b/CMakeLists.txt index 8e492cf..0d1e17b 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -127,7 +127,7 @@ option(CPACK_BINARY_TGZ "Enable to build TGZ packages" OFF) option(CPACK_BINARY_TXZ "Enable to build TXZ packages" OFF) # Output a gzip'd tarball for the `package_source` target. -SET(CPACK_SOURCE_TGZ ON) +set(CPACK_SOURCE_TGZ ON) # By default, other forms of source packages are disabled. option(CPACK_SOURCE_TBZ2 "Enable to build TBZ2 source packages" OFF) @@ -135,4 +135,4 @@ option(CPACK_SOURCE_TXZ "Enable to build TXZ source packages" OFF) option(CPACK_SOURCE_TZ "Enable to build TZ source packages" OFF) option(CPACK_SOURCE_ZIP "Enable to build ZIP source packages" OFF) -INCLUDE(CPack) +include(CPack)
