https://github.com/Kitware/CMake
Revision c903b5319bfcf383964c625bb84d7bc958aba2e9 authored by Stephen Kelly on 15 March 2014, 08:18:39 UTC, committed by Brad King on 17 March 2014, 13:30:39 UTC
Restore support for the undocumented <CONFIG>_LOCATION target property
removed by commit v3.0.0-rc1~175^2 (cmTarget: Remove support for
<CONFIG>_LOCATION property, 2013-12-30) as part of the CMP0026 OLD
behavior.
1 parent 59d3898
Raw File
Tip revision: c903b5319bfcf383964c625bb84d7bc958aba2e9 authored by Stephen Kelly on 15 March 2014, 08:18:39 UTC
cmTarget: Restore <CONFIG>_LOCATION to CMP0026 OLD behavior (#14808)
Tip revision: c903b53
SetupForDevelopment.sh
#!/usr/bin/env bash

cd "${BASH_SOURCE%/*}/.." &&
Utilities/GitSetup/setup-user && echo &&
Utilities/GitSetup/setup-hooks && echo &&
Utilities/GitSetup/setup-stage && echo &&
(Utilities/GitSetup/setup-ssh ||
 echo 'Failed to setup SSH.  Run this again to retry.') && echo &&
Utilities/GitSetup/tips

# Rebase master by default
git config rebase.stat true
git config branch.master.rebase true
back to top