[Cmake-commits] CMake branch, master, updated. v2.8.5-278-g28cba22
David Cole
david.cole at kitware.com
Thu Aug 25 15:40:52 EDT 2011
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, master has been updated
via 28cba226b352e04c96441f8ca051edf98c68994e (commit)
via 59238dc2deb80f3f3d101de9a3945f890981a2c0 (commit)
via 98472e45c86d0b8592e0a6361d392bfab921b3a0 (commit)
via a6ccf3cb6552f8f2b7b6adaf419a278efd085ac3 (commit)
via 43869188af1648218d506555b2e6ac7e4a92494c (commit)
via 7d693108faa0df924944eb2b5ced210d735d75b1 (commit)
via 301114994773e62b82965f3082fef6dd23532e60 (commit)
via ab57ff6156a725664fce995a9460de839018405c (commit)
via 626fc717c6a6fb880053e645b3f12805f60c102a (commit)
via ec6982dc8cad04c72a6ab78b7f115ece65e812bd (commit)
via e552ae7cfd8d6b3dce51f61258ce4854db7c7fbc (commit)
via e589589ab18daabc863061fac515adc2b1ae8d55 (commit)
via aecfc1fd1045fef4af58a16782c2272dd5825aa5 (commit)
via 6bb4ca3802d2fc83f1072adfde6f1075aa2992c4 (commit)
via fd15b5e1c425b0e2cb418e87a115215b0aa7501a (commit)
via 9fc87c6343a5d448f04d7a9397beb95e3b85178e (commit)
via d3ae0fff7dea00775f8c6e8bed59a494f102999c (commit)
via bf0737526419936915a9f2c14f06bff556d1fcd4 (commit)
via b0e357824c0ddf1a57db7742da3d5f3f90af97d2 (commit)
via 53edfb206b549f0dd5a014aac054ca82d865bbcd (commit)
via b8fdaa1d662b01a167c94f2a9a9efec9dd0ea2d0 (commit)
via 7690edffd9801c41dcfa4ef2a6213d4883e55c83 (commit)
via e4f603b698a13857e79a5f6df18a7461b20d4bd4 (commit)
via a91d662f46fd2781fc5a3b73c2d244ac6dc2a343 (commit)
via b976e70063008c0633cb5dd4ecb1f40278c67935 (commit)
from f5115f91d974e866b21a7c65386fcda34221e6bf (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=28cba226b352e04c96441f8ca051edf98c68994e
commit 28cba226b352e04c96441f8ca051edf98c68994e
Merge: f5115f9 59238dc
Author: David Cole <david.cole at kitware.com>
AuthorDate: Thu Aug 25 15:40:49 2011 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Aug 25 15:40:49 2011 -0400
Merge topic 'UsingCMakeLikePkgConfig2'
59238dc Fix --find-package mode on Cygwin, where enable_language(RC) is called
98472e4 Require the current cmake version in --find-package mode
a6ccf3c Use $(CXXFLAGS) and $(LDFLAGS) in the --find-package test Makefile
4386918 Fix line length
7d69310 Only enable the test when using GNU make
3011149 Make the test harder by always having a space in the include dirs
ab57ff6 Make the --find-package test harder
626fc71 Much improved test, should now be executed on all UNIXes
ec6982d Disable any STATUS output in --find-package mode
e552ae7 Dont check for -isysroot and -mmacosx-version on OSX in --find-package mode
e589589 Rename helper macros print_compile_flags() to set_compile_flags_var()
aecfc1f Fix test on OpenBSD with BSD make
6bb4ca3 The makefile for the test was kindof wrong
fd15b5e Only run the test if we are using a makefile generator under UNIX
9fc87c6 Add a test for the new --find-package mode
d3ae0ff Improve documentation for --find-package mode
bf07375 Add a cmake.m4 for using cmake in autoconf projects instead of pkgconfig
b0e3578 Use the file-utility to test for 64bit if there is no /usr/lib64
53edfb2 Better support for lib64 and Debian multiarch
b8fdaa1 Fix copyright notice in new CMakeFindPackageMode.cmake
7690edf Replace cmake::GetScriptMode() with GetWorkingMode()
e4f603b Implement find-package mode of cmake
a91d662 Add find-package mode, which does nothing yet
b976e70 Make clLocalGenerator::GetTargetFlags() public
-----------------------------------------------------------------------
Summary of changes:
Modules/CMakeFindPackageMode.cmake | 187 ++++++++++++++++++++
Source/cmGlobalGenerator.cxx | 2 +-
Source/cmLocalGenerator.h | 2 +-
Source/cmMakefile.cxx | 19 ++-
Source/cmake.cxx | 135 +++++++++++++-
Source/cmake.h | 31 +++-
Source/cmakemain.cxx | 17 ++-
Tests/CMakeLists.txt | 2 +
Tests/FindPackageModeMakefileTest/CMakeLists.txt | 30 +++
Tests/FindPackageModeMakefileTest/FindFoo.cmake.in | 9 +
Tests/FindPackageModeMakefileTest/Makefile.in | 10 +
.../foo.cpp} | 2 +-
Tests/FindPackageModeMakefileTest/foo.h | 6 +
Tests/FindPackageModeMakefileTest/main.cpp | 8 +
Utilities/CMakeLists.txt | 1 +
Utilities/cmake.m4 | 53 ++++++
16 files changed, 488 insertions(+), 26 deletions(-)
create mode 100644 Modules/CMakeFindPackageMode.cmake
create mode 100644 Tests/FindPackageModeMakefileTest/CMakeLists.txt
create mode 100644 Tests/FindPackageModeMakefileTest/FindFoo.cmake.in
create mode 100644 Tests/FindPackageModeMakefileTest/Makefile.in
copy Tests/{SourceGroups/sub1/foobar.c => FindPackageModeMakefileTest/foo.cpp} (52%)
create mode 100644 Tests/FindPackageModeMakefileTest/foo.h
create mode 100644 Tests/FindPackageModeMakefileTest/main.cpp
create mode 100644 Utilities/cmake.m4
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list