Skip to content

Commit

Permalink
Merge topic 'explicit-git-tag-for-external-project'
Browse files Browse the repository at this point in the history
  Update ExternalProject definition to explicitly specify GIT_TAG
  • Loading branch information
jcfr committed Nov 9, 2010
2 parents 21f0a81 + a07cd01 commit ca20ef9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions CMakeExternals/CTKData.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ IF(BUILD_TESTING)
# MESSAGE(STATUS "Adding project:${proj}")
ExternalProject_Add(${proj}
GIT_REPOSITORY ${git_protocol}://github.com/commontk/CTKData.git
GIT_TAG "origin/master"
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
Expand Down
2 changes: 1 addition & 1 deletion CMakeExternals/DCMTK.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ IF(${add_project})

ExternalProject_Add(${proj}
GIT_REPOSITORY "${git_protocol}://github.com/commontk/DCMTK.git"
GIT_TAG "patched"
GIT_TAG "origin/patched"
CMAKE_GENERATOR ${gen}
BUILD_COMMAND ""
CMAKE_ARGS
Expand Down
2 changes: 1 addition & 1 deletion CMakeExternals/Log4Qt.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ IF(${add_project})
# MESSAGE(STATUS "Adding project:${proj}")
ExternalProject_Add(${proj}
GIT_REPOSITORY "${git_protocol}://github.com/commontk/Log4Qt.git"
GIT_TAG "patched"
GIT_TAG "origin/patched"
CMAKE_GENERATOR ${gen}
BUILD_COMMAND ""
CMAKE_ARGS
Expand Down
2 changes: 1 addition & 1 deletion CMakeExternals/PythonQt.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ IF(${add_project})

ExternalProject_Add(${proj}
GIT_REPOSITORY "${git_protocol}://github.com/commontk/PythonQt.git"
GIT_TAG "patched"
GIT_TAG "origin/patched"
CMAKE_GENERATOR ${gen}
BUILD_COMMAND ""
CMAKE_ARGS
Expand Down
1 change: 1 addition & 0 deletions CMakeExternals/VTK.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ IF(${add_project})
# MESSAGE(STATUS "Adding project:${proj}")
ExternalProject_Add(${proj}
GIT_REPOSITORY ${git_protocol}://vtk.org/VTK.git
GIT_TAG "origin/master"
INSTALL_COMMAND ""
CMAKE_GENERATOR ${gen}
CMAKE_ARGS
Expand Down
1 change: 1 addition & 0 deletions CMakeExternals/ZMQ.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ IF(${add_project})
# MESSAGE(STATUS "Adding project:${proj}")
ExternalProject_Add(${proj}
GIT_REPOSITORY ${git_protocol}://github.com/PatrickCheng/zeromq2.git
GIT_TAG "origin/master"
INSTALL_COMMAND ""
CMAKE_GENERATOR ${gen}
CMAKE_ARGS
Expand Down

0 comments on commit ca20ef9

Please sign in to comment.