https://github.com/Kitware/CMake
Revision 9259d7788193ad23aa429652af983afc3bc4a953 authored by Brad King on 27 January 2015, 15:57:17 UTC, committed by Brad King on 28 January 2015, 14:06:21 UTC
Custom command path normalization added in commit v3.1.0-rc1~471^2
(add_custom_command: Normalize OUTPUT and DEPENDS paths, 2014-05-28)
broke use of OBJECT_DEPENDS to bring in custom commands because the
latter paths were not normalized too.  Normalize them and add a test
case.

Reported-by: Daniel v. Gerpen
1 parent 57622bd
Raw File
Tip revision: 9259d7788193ad23aa429652af983afc3bc4a953 authored by Brad King on 27 January 2015, 15:57:17 UTC
Normalize OBJECT_DEPENDS paths to match custom commands (#15366)
Tip revision: 9259d77
.hooks-config.bash
#=============================================================================
# CMake - Cross Platform Makefile Generator
# Copyright 2000-2011 Kitware, Inc., Insight Software Consortium
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================

# Loaded by .git/hooks/(pre-commit|commit-msg|prepare-commit-msg)
# during git commit after local hooks have been installed.

hooks_chain_pre_commit="Utilities/Git/pre-commit"
hooks_chain_commit_msg="Utilities/Git/commit-msg"
hooks_chain_prepare_commit_msg="Utilities/Git/prepare-commit-msg"
back to top