Re: [cmake-developers] Avoid merging stderr/stdout in RunSingleCommand

2011-07-26 Thread Johan Björk
Sure, attached files.

/Johan



On Mon, Jul 25, 2011 at 5:32 PM, Brad King brad.k...@kitware.com wrote:

 On 07/20/2011 05:48 AM, Johan Björk wrote:
  Finally got around to fix this properly. Let me know what you think.

 Cool, thanks!  Please split the patch into one that converts the boolean
 to an enumeration value with just OUTPUT_NONE and OUTPUT_MERGE and a
 second patch that adds OUTPUT_NORMAL and the new implementation.  That
 will be easier to review.

 Thanks,
 -Brad



0001-cmSystemTools-RunSingleCommand-now-takes-a-enum-inst.patch
Description: Binary data


0002-cmSystemTools-RunSingleCommand-add-a-OUTPUT_NORMAL-f.patch
Description: Binary data
___
cmake-developers mailing list
cmake-developers@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


Re: [cmake-developers] [CMake] Xcode and Cmake ReRun

2011-07-26 Thread David Cole
It looks reasonable at first glance. I'll give it a try with the full
CMake test suite tomorrow plus maybe a build of a larger project, and
let you know if I discover any gotchas.


Thanks,
David


On Tue, Jul 26, 2011 at 5:16 PM, Johan Björk p...@spotify.com wrote:
 Hi David,
 Please see attached patch. It seems to work with the project I happened to
 have open; it's not tested more then that. You know the xcode generator a
 whole lot better then me; does it seem reasonable?
 Thanks
 /Johan

 On Tue, Jul 26, 2011 at 7:31 PM, David Cole david.c...@kitware.com wrote:

 Sounds like we need a ZERO_CHECK target like we have in the Visual
 Studio generators to enable parallel building in Xcode.

 There are currently some problems with the existing CMake re-run
 commands on VS builds when CMake inputs change during the course of
 the build. When that happens, (not something that us CMake devs
 expect, by the way, but not forbidden/prevented either...), CMake
 re-runs during the middle of the build, and we get all the bug reports
 about Visual Studio reload stuff not working (here, and related
 issues: http://public.kitware.com/Bug/view.php?id=11258 and
 particularly, this note:
 http://public.kitware.com/Bug/view.php?id=11440#c26905 )

 I don't think there's a specific reason for it... Perhaps it was
 simply easiest that way, or we didn't have a way to depend on custom
 targets at the time, or it was modeled after the VS re-run rules...
 (Or maybe Bill or Brad will chime in if I'm incorrect here...)


 HTH,
 David


 On Mon, Jul 25, 2011 at 5:37 PM, Johan Björk p...@spotify.com wrote:
  Hi guys,
 
  I noticed that each XCode target has an associated CMake ReRun script
  phase. Is there a specific reason for this (in difference to having
  one target that all others depend on that does the ReRun check?)
 
  It causes a fair few issues, it fails when you are parallelcompiling
  targets (It'll start number of cpus copies of cmake at the same
  time), secondly it adds quite some time to the build if you have many
  targets
  /Johan
  ___
  Powered by www.kitware.com
 
  Visit other Kitware open-source projects at
  http://www.kitware.com/opensource/opensource.html
 
  Please keep messages on-topic and check the CMake FAQ at:
  http://www.cmake.org/Wiki/CMake_FAQ
 
  Follow this link to subscribe/unsubscribe:
  http://www.cmake.org/mailman/listinfo/cmake
 


___
cmake-developers mailing list
cmake-developers@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


Re: [CMake] Wiki: version compatibility matrix

2011-07-26 Thread Johannes Zarl
Apparently I forgot to add the list in my reply to Alexander, so
here for all to read:

Now that I'm back from my vacation, I'll get to it soonish (during 
August).

Cheers,
  Johannes

On 07/14/2011 at 14:03, Clifford Yapp cliffy...@gmail.com wrote: 
 On Tue, Jul 12, 2011 at 4:58 PM, Alexander Neundorf
 a.neundorf-w...@gmx.net wrote:
 
 now cmake 2.8.5 has been released, could you please if you find the time
 update that page ?
 It's really useful :-)
 
 Second that motion - it just helped me figure out another issue! :-)
 
 Cheers,
 CY


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


[CMake] install(script ... and memory loss

2011-07-26 Thread Micha Renner
In a CMakeLists file, there is this command:

INSTALL(SCRIPT tInstall.txt)

During processing tInstall.txt none of global variables (e.g. MSVC,
CMAKE_SHARED_LIBRARY_SUFFIX ...) has a value.

Is this a bug or a feature?

Greetings

Micha



___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] [ryppl-dev] Re: $ expressions in include_directories command

2011-07-26 Thread Brad King
On 07/25/2011 11:01 PM, Dave Abrahams wrote:
 on Mon Jul 25 2011, Brad King brad.king-AT-kitware.com wrote:
 That makes it sound like it's not going to help us with long include
 directory lists with non-GNU tools.  Is that right?

 When generating VS IDE project files...
 
 I'm not asking about the IDE, though.  I was thinking of nmake/vcbuild

When generating NMake Makefiles CMake has always used an inline response
file syntax supported by NMake for passing arguments to the actual tools.
I think it will work for long include lists.

-Brad
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] install(script ... and memory loss

2011-07-26 Thread Eric Noulard
2011/7/26 Micha Renner micha.ren...@t-online.de:
 In a CMakeLists file, there is this command:

 INSTALL(SCRIPT tInstall.txt)

 During processing tInstall.txt none of global variables (e.g. MSVC,
 CMAKE_SHARED_LIBRARY_SUFFIX ...) has a value.

 Is this a bug or a feature?

Feature...

At Install-time CMake is running in script mode and almost all vars you have in
the CMake-time context (within CMakeLists.txt) are not set.

If you want CMake-time var values available in your Install-time script
you'll have to either:

1) load some CMake-time generated file which contains the values

2) configure/generated your Install-time script itself

 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/tInstall.txt.in
${CMAKE_CURRENT_BINARY_DIR}/tInstall.txt)
 install(SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/tInstall.txt)


-- 
Erk
Membre de l'April - « promouvoir et défendre le logiciel libre » -
http://www.april.org
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] install(script ... and memory loss

2011-07-26 Thread Micha Renner
This is a really good idea, thank you.
  configure_file(${CMAKE_CURRENT_SOURCE_DIR}/tInstall.txt.in
 ${CMAKE_CURRENT_BINARY_DIR}/tInstall.txt)
  install(SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/tInstall.txt)
 
 
Micha


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


[CMake] Regex Alternation

2011-07-26 Thread Allen Barnett
Hi: I was wondering how the alternation character, |, works in CMake
regular expressions. To match this or that in a longer string would
it be (this|that) or (this)|(that)? The CMake --help says | is
supported but header file kwsys/RegularExpression.hxx.in doesn't mention
it.
Thanks,
Allen
-- 
Allen Barnett
Transpire, Inc
E-Mail: al...@transpireinc.com

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] Regex Alternation

2011-07-26 Thread David Cole
(this|that) works.


On Tue, Jul 26, 2011 at 10:10 AM, Allen Barnett al...@transpireinc.com wrote:
 Hi: I was wondering how the alternation character, |, works in CMake
 regular expressions. To match this or that in a longer string would
 it be (this|that) or (this)|(that)? The CMake --help says | is
 supported but header file kwsys/RegularExpression.hxx.in doesn't mention
 it.
 Thanks,
 Allen
 --
 Allen Barnett
 Transpire, Inc
 E-Mail: al...@transpireinc.com

 ___
 Powered by www.kitware.com

 Visit other Kitware open-source projects at 
 http://www.kitware.com/opensource/opensource.html

 Please keep messages on-topic and check the CMake FAQ at: 
 http://www.cmake.org/Wiki/CMake_FAQ

 Follow this link to subscribe/unsubscribe:
 http://www.cmake.org/mailman/listinfo/cmake

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] Regex Alternation

2011-07-26 Thread Allen Barnett
Thanks!
On Tue, 2011-07-26 at 10:31 -0400, David Cole wrote:
 (this|that) works.
 
 
 On Tue, Jul 26, 2011 at 10:10 AM, Allen Barnett al...@transpireinc.com 
 wrote:
  Hi: I was wondering how the alternation character, |, works in CMake
  regular expressions. To match this or that in a longer string would
  it be (this|that) or (this)|(that)? The CMake --help says | is
  supported but header file kwsys/RegularExpression.hxx.in doesn't mention
  it.


-- 
Allen Barnett
Transpire, Inc
E-Mail: al...@transpireinc.com

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] Regex Alternation

2011-07-26 Thread Michael Wild
Both work, but the meaning is different. In (this|that) the alternation
is restricted to within the group defined by the brackets, in
(this)|(that) you get two groups, one of which is always empty, and the
alternation is between everything left or right of the | operator.

Michael

On 07/26/2011 04:31 PM, David Cole wrote:
 (this|that) works.
 
 
 On Tue, Jul 26, 2011 at 10:10 AM, Allen Barnett al...@transpireinc.com 
 wrote:
 Hi: I was wondering how the alternation character, |, works in CMake
 regular expressions. To match this or that in a longer string would
 it be (this|that) or (this)|(that)? The CMake --help says | is
 supported but header file kwsys/RegularExpression.hxx.in doesn't mention
 it.
 Thanks,
 Allen
 --
 Allen Barnett
 Transpire, Inc
 E-Mail: al...@transpireinc.com


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


[CMake] extract a folder name

2011-07-26 Thread Julien Dardenne

Hi,

I have a path and i try to extract the folder name of this one.

example :

For C:/Programs/game/test, i would get test

Do you know a cmake command ? or should i use regular expressions ?
If so, can you give me an example ?

Thanks,
Julien

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] extract a folder name

2011-07-26 Thread Eric Noulard
2011/7/26 Julien Dardenne julien.darde...@technooliq.com:
 Hi,

 I have a path and i try to extract the folder name of this one.

 example :

 For C:/Programs/game/test, i would get test

 Do you know a cmake command ? or should i use regular expressions ?
 If so, can you give me an example ?

set(ORIGNAME C:/Programs/game/test)
get_filename_component(FNAME ${ORIGNAME} NAME)

You should get what you want in variable FNAME.

and

you should read the doc of get_filename_component cmake builtin macro:

cmake --help-command get_filename_component

-- 
Erk
Membre de l'April - « promouvoir et défendre le logiciel libre » -
http://www.april.org
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


[CMake] Fwd: CPACK/NSIS: Subfolders/components related generation issue

2011-07-26 Thread Laszlo Papp
Hi,

I am trying to make our cpack setup work for an NSIS installer. I
would like to make a very first step towards a component based
installer on Windows.

For the time being, the basic idea is that: I have some subfolders
(different libraries) inside the project, and I would like to make
every subfolder a separate component as a very first, test stage (I
can later fine-tune the whole setup according to our purposes, if it
works). Hence the subfolders (components) would be for instance:
core/audio/input/graphics/engine/player/creator and so forth.

In the current situation, the generated installer contains and
installs only the creator folder, but with DLLs of some other
folders, like core/audio/input/graphics/engine/player and so forth. I
am not sure what I am doing wrong, but this is the relevant CPack NSIS
entry in the ${CMAKE_SOURCE_DIR}/CMakeLists.txt:
https://projects.kde.org/projects/playground/games/gluon/repository/revisions/master/entry/CMakeLists.txt#L224

As a matter of the fact, I am not getting any separate core
component either. Here is the relevant install line from the
${CMAKE_SOURCE_DIR}/core/CMakeLists.txt file:
https://projects.kde.org/projects/playground/games/gluon/repository/revisions/master/entry/core/CMakeLists.txt#L106

My idea was that: I should at least get a core component inside the
NSIS installer with this simple case. What am I doing wrong ?  I would
also attach my generated project.nsi, if there was no 40 KB limitation
on this list.
Hence please ask for specific information from that file, if you need anything.

Thank for your help in advance!

Best Regards,
Laszlo Papp
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] Fwd: CPACK/NSIS: Subfolders/components related generation issue

2011-07-26 Thread Eric Noulard
2011/7/26 Laszlo Papp lp...@kde.org:
 Hi,

 I am trying to make our cpack setup work for an NSIS installer. I
 would like to make a very first step towards a component based
 installer on Windows.

Do you get component installer with other CPack generators or not?
RPM or DEB on Linux (with at least CMake 2.8.4 and better CMake 2.8.5) ?

What happen with  ZIP or TGZ on Windows and/or Linux?

By the way which version of CMake/CPack are you using?

I did take the time to git clone gluon a give the compilation a try
on my Linux box (with CMake/CPack 2.8.5):


The trouble is you are using ABSOLUTE INSTALL PATH

like in:

install(
TARGETS GluonCore
RUNTIME DESTINATION bin
LIBRARY DESTINATION ${LIB_INSTALL_DIR}
ARCHIVE DESTINATION ${LIB_INSTALL_DIR}
FRAMEWORK DESTINATION ${LIB_INSTALL_DIR}
)

which seems to be set like:
set(LIB_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX} CACHE
INTERNAL The subdirectory relative to the install prefix where
libraries will be installed.)

This is the culprit,
you do not need the ${CMAKE_INSTALL_PREFIX} part
try to drop it (for every xxx_INSTALL_DIR)

ABSOLUTE install path do not play well with component install because
component install needs DESTDIR to work.

Thus ABSOLUTE install path breaks CPack component unless you set
CPACK_SET_DESTDIR to ON
but even with that you won't get what you want.

ABSOLUTE install path breaks the building of RPM relocatable package.

ABSOLUTE install path makes you sometimes do real-install when you believe
you are creating a package: i.e. the package is almost empty and the missing
files are installed on the system at their absolute path. You discover
this issue
only when you don't have the right to create file at the ABSOLUTE DESTINATION.

The only case where ABSOLUTE path may be used is for things like
installing files in /etc on linux or something similar, and I'm not
sure this is already
playing well with component.
etc...

So the solution begins with DOT NOT USE ABSOLUTE INSTALL PATH,
give it a try and tell us how it goes.


-- 
Erk
Membre de l'April - « promouvoir et défendre le logiciel libre » -
http://www.april.org
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] Invalid library output directory when VC++ solution is generated

2011-07-26 Thread Glenn Coombs
Have a look at the documentation for CMAKE_RUNTIME_OUTPUT_DIRECTORY.  On
Linux the .so shared library files do go in the LIBRARY_OUTPUT_DIRECTORY.
However, on Windows the DLL files are placed in the runtime directory and
only the import libraries (.LIB files) are placed in the
LIBRARY_OUTPUT_DIRECTORY.

2011/7/25 Laura Autón García laura.au...@gmail.com

 Hello all,
 In the project I am collaborating on, CMake is used in Windows in
 order to generate a Visual C++ solution to be compiled afterwards. In
 this process, everything seems to work fine as the external
 directories and libraries are well included and everything compiles
 and so. However, we are experiencing problems with the directory in
 which our dll library is to be created.
 We specify in CMake that the directory is ../lib but
 when checking the configuration in Visual C++ software, it seems to be
 ../bin/Release directory, so the library is generated there.
 The CMake sentences we wrote regarding this issue are as follows:

  SET(LIB_DIR  ${PROJECT_SOURCE_DIR}/lib)
  SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LIB_DIR} CACHE PATH Directory
 for libraries)

 According to the documentation:

  CMAKE_LIBRARY_OUTPUT_DIRECTORY: Where to put all the LIBRARY
 targets when built.
  This variable is used to initialize the LIBRARY_OUTPUT_DIRECTORY
 property on all the targets.
  See that target property for additional information.

 Also, the documentation regarding LIBRARY_OUTPUT_DIRECTORY shows:

  LIBRARY_OUTPUT_DIRECTORY: Output directory in which to build
 LIBRARY target files.
  This property specifies the directory into which library target
 files should be built. There are three
  kinds of target files that may be built: archive, library, and
 runtime. Executables are always treated
  as runtime targets. Static libraries are always treated as archive
 targets. Module libraries are always
  treated as library targets. For non-DLL platforms shared libraries
 are treated as library targets. For
  DLL platforms the DLL part of a shared library is treated as a
 runtime target and the corresponding
  import library is treated as an archive target. All Windows-based
 systems including Cygwin are
  DLL platforms. This property is initialized by the value of the variable
  CMAKE_LIBRARY_OUTPUT_DIRECTORY if it is set when a target is created.

 However, when the project is generated, the library output directory
 is not the one specified, but the one I mentioned above.
 If anyone has any idea why this may be happening, it would be appreciated.
 The binaries, on the other hand, as generated in their correct directory.

 Thank you in advance.
 ___
 Powered by www.kitware.com

 Visit other Kitware open-source projects at
 http://www.kitware.com/opensource/opensource.html

 Please keep messages on-topic and check the CMake FAQ at:
 http://www.cmake.org/Wiki/CMake_FAQ

 Follow this link to subscribe/unsubscribe:
 http://www.cmake.org/mailman/listinfo/cmake

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Fwd: CPACK/NSIS: Subfolders/components related generation issue

2011-07-26 Thread Laszlo Papp
Hi Eric,

 So the solution begins with DOT NOT USE ABSOLUTE INSTALL PATH,
 give it a try and tell us how it goes.

Thanks a lot for your answer. It has been very useful. The components
seem much better for now after this change you were proposing:
https://projects.kde.org/projects/playground/games/gluon/repository/revisions/master/entry/core/CMakeLists.txt#L19

The bin/share/include directories are generated properly inside each
component, but there is still some issue with the library part. There
are no DLLs generated inside the components and I do not know why. It
seems to me, like ${LIB_INSTALL_DIR} is properly used in the install
lines.

Any thought ?

Best Regards,
Laszlo Papp
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


[CMake] Linux shared library suffixes and the soft link that matches

2011-07-26 Thread david_bjornbak
Is there's a standard way under CMake to produce Linux shared libraries with 
the numbered suffix and then soft link that references the library with a 
numbered suffix.  For example,  it's common to have a build a library foo with 
the name  libfoo.so.1.2.3 and then have a soft link named libfoo.so to point to 
it.

The following is an example of the libz using this configuration.

lrwxrwxrwx  1 root root15 Jun 16 11:23 libz.so - libz.so.1.2.1.2
lrwxrwxrwx  1 root root15 Jun 16 11:23 libz.so.1 - libz.so.1.2.1.2
-rwxr-xr-x  1 root root 63624 Jul 12  2005 libz.so.1.2.1.2


-dave b.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Linux shared library suffixes and the soft link that matches

2011-07-26 Thread David Cole
See target properties:

http://cmake.org/cmake/help/cmake-2-8-docs.html#prop_tgt:VERSION

  and

http://cmake.org/cmake/help/cmake-2-8-docs.html#prop_tgt:SOVERSION


On Tue, Jul 26, 2011 at 7:49 PM,  david_bjorn...@agilent.com wrote:
 Is there’s a standard way under CMake to produce Linux shared libraries with
 the numbered suffix and then soft link that references the library with a
 numbered suffix.  For example,  it’s common to have a build a library foo
 with the name  libfoo.so.1.2.3 and then have a soft link named libfoo.so to
 point to it.



 The following is an example of the libz using this configuration.



 lrwxrwxrwx  1 root root    15 Jun 16 11:23 libz.so - libz.so.1.2.1.2

 lrwxrwxrwx  1 root root    15 Jun 16 11:23 libz.so.1 - libz.so.1.2.1.2

 -rwxr-xr-x  1 root root 63624 Jul 12  2005 libz.so.1.2.1.2





 -dave b.

 ___
 Powered by www.kitware.com

 Visit other Kitware open-source projects at
 http://www.kitware.com/opensource/opensource.html

 Please keep messages on-topic and check the CMake FAQ at:
 http://www.cmake.org/Wiki/CMake_FAQ

 Follow this link to subscribe/unsubscribe:
 http://www.cmake.org/mailman/listinfo/cmake

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] Linux shared library suffixes and the soft link that matches

2011-07-26 Thread david_bjornbak
Thanks, I got the following to work for me. 

set_target_properties( mylibname  PROPERTIES
  VERSION ${GENERIC_LIB_VERSION}
  SOVERSION ${GENERIC_LIB_SOVERSION}
)


-dave b.

-Original Message-
From: David Cole [mailto:david.c...@kitware.com] 
Sent: Tuesday, July 26, 2011 5:21 PM
To: BJORNBAK,DAVID (A-Sonoma,ex1)
Cc: cmake@cmake.org
Subject: Re: [CMake] Linux shared library suffixes and the soft link that 
matches

See target properties:

http://cmake.org/cmake/help/cmake-2-8-docs.html#prop_tgt:VERSION

  and

http://cmake.org/cmake/help/cmake-2-8-docs.html#prop_tgt:SOVERSION


On Tue, Jul 26, 2011 at 7:49 PM,  david_bjorn...@agilent.com wrote:
 Is there's a standard way under CMake to produce Linux shared libraries with
 the numbered suffix and then soft link that references the library with a
 numbered suffix.  For example,  it's common to have a build a library foo
 with the name  libfoo.so.1.2.3 and then have a soft link named libfoo.so to
 point to it.



 The following is an example of the libz using this configuration.



 lrwxrwxrwx  1 root root    15 Jun 16 11:23 libz.so - libz.so.1.2.1.2

 lrwxrwxrwx  1 root root    15 Jun 16 11:23 libz.so.1 - libz.so.1.2.1.2

 -rwxr-xr-x  1 root root 63624 Jul 12  2005 libz.so.1.2.1.2





 -dave b.

 ___
 Powered by www.kitware.com

 Visit other Kitware open-source projects at
 http://www.kitware.com/opensource/opensource.html

 Please keep messages on-topic and check the CMake FAQ at:
 http://www.cmake.org/Wiki/CMake_FAQ

 Follow this link to subscribe/unsubscribe:
 http://www.cmake.org/mailman/listinfo/cmake

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


[Cmake-commits] CMake branch, next, updated. v2.8.5-1287-g6e0f12c

2011-07-26 Thread Brad King
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, next has been updated
   via  6e0f12c39a13a096cc597993dc6e415944f5181c (commit)
   via  0a939c86d6475632cf2ebbf4923d93989a989866 (commit)
  from  a4368f4cff8639953311854fae7329decaf89d8d (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=6e0f12c39a13a096cc597993dc6e415944f5181c
commit 6e0f12c39a13a096cc597993dc6e415944f5181c
Merge: a4368f4 0a939c8
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:15:48 2011 -0400
Commit: Brad King brad.k...@kitware.com
CommitDate: Tue Jul 26 14:15:48 2011 -0400

Merge branch 'master' into next


---

Summary of changes:
 Source/kwsys/kwsysDateStamp.cmake |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-21-gb3dba1a

2011-07-26 Thread Brad King
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  b3dba1a145974361d8afa56ffa66aaadb4e3cb01 (commit)
   via  6b4d3ad32a93b4bedbc76c03cbf088cf31138163 (commit)
  from  0a939c86d6475632cf2ebbf4923d93989a989866 (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=b3dba1a145974361d8afa56ffa66aaadb4e3cb01
commit b3dba1a145974361d8afa56ffa66aaadb4e3cb01
Merge: 0a939c8 6b4d3ad
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:54:21 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:54:21 2011 -0400

Merge topic 'mingw-make-use-native-echo-issue-12283'

6b4d3ad MinGW: Remove old workaround and use native echo (#12283)


---

Summary of changes:
 Source/cmGlobalMinGWMakefileGenerator.cxx |   12 
 Source/cmLocalUnixMakefileGenerator3.cxx  |7 ++-
 Source/cmLocalUnixMakefileGenerator3.h|   10 --
 3 files changed, 2 insertions(+), 27 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-31-g2b16232

2011-07-26 Thread Brad King
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  2b16232d4535cf438be879d86c013e9945dc9f52 (commit)
   via  1417a55754d97810b85deb0f51793b0c4ceee4e8 (commit)
   via  0b7627df0a6c5e81c8f867bf4853968b85ccfb28 (commit)
   via  b01a50567a7ca190e9f39aa2db5f4b0042e9ca4c (commit)
   via  f99c3120c91b9b659d4fce20d5578b6c6674dc3f (commit)
   via  f3233ba5211596df205e6d915b06bd412087c202 (commit)
   via  a22ed3d62da7fad10eb1268ba4a359c62ad50488 (commit)
   via  c177c8e6b829f1dca4bbb81debd362d143868cf2 (commit)
   via  5c2106c71eb2a8b4e547b889fdc8aea3aeaad675 (commit)
   via  a4b6275eb7c31562633f0c1c805e2912c9a460f1 (commit)
  from  b3dba1a145974361d8afa56ffa66aaadb4e3cb01 (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=2b16232d4535cf438be879d86c013e9945dc9f52
commit 2b16232d4535cf438be879d86c013e9945dc9f52
Merge: b3dba1a 1417a55
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:54:33 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:54:33 2011 -0400

Merge topic 'asn_java_support'

1417a55 Java: Fix documentation format and indentation
0b7627d Java: Use set_property/get_property for target variables.
b01a505 Java: Create correct jar archive dependencies.
f99c312 Java: Added some dependency magic to avoid recompilations.
f3233ba Java: Create java_class_filelist only if it does't exist.
a22ed3d Tests: Check for the new Java exeutable variables.
c177c8e Tests: Java tests should test UseJava.cmake
5c2106c Modules: Added CMake Java support.
a4b6275 FindJava: Find missing java development executables.


---

Summary of changes:
 Modules/FindJava.cmake |   18 +
 Modules/UseJava.cmake  |  858 
 Modules/UseJavaClassFilelist.cmake |   52 +++
 Modules/UseJavaSymlinks.cmake  |   32 ++
 Tests/CMakeLists.txt   |4 +-
 Tests/Java/CMakeLists.txt  |   45 +--
 6 files changed, 968 insertions(+), 41 deletions(-)
 create mode 100644 Modules/UseJava.cmake
 create mode 100644 Modules/UseJavaClassFilelist.cmake
 create mode 100644 Modules/UseJavaSymlinks.cmake


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-34-g4a18c30

2011-07-26 Thread Brad King
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  4a18c30a428940e6f78805323b365aab364d85f8 (commit)
   via  aed92ccea6321d0323a84d9001c489ef5d05d350 (commit)
   via  d44c68f39e5b46324898ce4ad0b12c63095b1b40 (commit)
  from  2b16232d4535cf438be879d86c013e9945dc9f52 (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=4a18c30a428940e6f78805323b365aab364d85f8
commit 4a18c30a428940e6f78805323b365aab364d85f8
Merge: 2b16232 aed92cc
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:54:56 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:54:56 2011 -0400

Merge topic 'vs-ia64'

aed92cc Add VisualStudio 9 and 10 generators for Itanium platform
d44c68f VS: Factor Find64BitTools out of Win64 generator to parent


---

Summary of changes:
 Modules/CMakeGenericSystem.cmake   |2 +-
 Modules/Platform/Windows-cl.cmake  |4 +-
 Source/CMakeLists.txt  |4 ++
 Source/cmGlobalVisualStudio10Generator.cxx |   36 ++
 Source/cmGlobalVisualStudio10Generator.h   |1 +
 Source/cmGlobalVisualStudio10IA64Generator.cxx |   51 
 ...tor.h = cmGlobalVisualStudio10IA64Generator.h} |   17 +++
 Source/cmGlobalVisualStudio10Win64Generator.cxx|   36 --
 Source/cmGlobalVisualStudio10Win64Generator.h  |1 -
 cxx = cmGlobalVisualStudio9IA64Generator.cxx} |   16 +++---
 ...ator.h = cmGlobalVisualStudio9IA64Generator.h} |   26 +-
 Source/cmake.cxx   |6 ++
 12 files changed, 130 insertions(+), 70 deletions(-)
 create mode 100644 Source/cmGlobalVisualStudio10IA64Generator.cxx
 copy Source/{cmGlobalVisualStudio10Win64Generator.h = 
cmGlobalVisualStudio10IA64Generator.h} (70%)
 copy Source/{cmGlobalVisualStudio9Win64Generator.cxx = 
cmGlobalVisualStudio9IA64Generator.cxx} (75%)
 copy Source/{cmGlobalVisualStudio9Win64Generator.h = 
cmGlobalVisualStudio9IA64Generator.h} (67%)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-39-g7453581

2011-07-26 Thread Brad King
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  7453581c78236d54311e96ec6b5741f07898438b (commit)
   via  8756e77fb40eabe1441889f4e82cb2997833bc82 (commit)
   via  e00d2c4d51da6d9c641af7e4537bfa97e22ce1fc (commit)
  from  9340ab28cc551897c2972b4dde1bfe1fc3803635 (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=7453581c78236d54311e96ec6b5741f07898438b
commit 7453581c78236d54311e96ec6b5741f07898438b
Merge: 9340ab2 8756e77
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:55:48 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:55:48 2011 -0400

Merge topic 'FindMPI-try-regular-compiler'

8756e77 Fix issues with removing try_compile input file.
e00d2c4 Try regular compiler when no MPI compiler.


---

Summary of changes:
 Modules/FindMPI.cmake |   66 ++---
 1 files changed, 62 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-47-g0cfd256

2011-07-26 Thread Brad King
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  0cfd25681ca0e840f0198ff21f6910efcfe70125 (commit)
   via  5a2b208617d13808287b3c785183fed9c99576f1 (commit)
  from  25a35f5686d7a72a4da8508be5d562c6c225664a (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=0cfd25681ca0e840f0198ff21f6910efcfe70125
commit 0cfd25681ca0e840f0198ff21f6910efcfe70125
Merge: 25a35f5 5a2b208
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:56:30 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:56:30 2011 -0400

Merge topic 'qt4-no-build-type'

5a2b208 Add -DQT_NO_DEBUG if no build type is specified so Qt plugins will 
work.


---

Summary of changes:
 Modules/UseQt4.cmake |3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-49-g9ac8c93

2011-07-26 Thread Brad King
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  9ac8c938bbe9b63bc9ef0f883d2bc5cea42f6735 (commit)
   via  0ece8f79ed480152fa70ca7dea7b6625386a63e3 (commit)
  from  0cfd25681ca0e840f0198ff21f6910efcfe70125 (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=9ac8c938bbe9b63bc9ef0f883d2bc5cea42f6735
commit 9ac8c938bbe9b63bc9ef0f883d2bc5cea42f6735
Merge: 0cfd256 0ece8f7
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:56:48 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:56:48 2011 -0400

Merge topic 'doc-custom-command-multiple-targets-issue-12311'

0ece8f7 Document caveat of custom commands in multiple targets (#12311)


---

Summary of changes:
 Source/cmAddCustomCommandCommand.h |4 
 1 files changed, 4 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-54-ga234b3a

2011-07-26 Thread Brad King
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  a234b3a4fc1db950801407a0a464ab484b06eb05 (commit)
   via  757a6a091c5c9c93e540a76c031552f4b286aeec (commit)
  from  ccd4c8b2025cb1cbd5ff5d6ae65ad9dab27b69d7 (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=a234b3a4fc1db950801407a0a464ab484b06eb05
commit a234b3a4fc1db950801407a0a464ab484b06eb05
Merge: ccd4c8b 757a6a0
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:57:19 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:57:19 2011 -0400

Merge topic 'CheckCXXSymbolExists'

757a6a0 Add CheckCXXSymbolExists.cmake, so this can be used also for C++


---

Summary of changes:
 Modules/CheckCXXSymbolExists.cmake |   42 
 Modules/CheckSymbolExists.cmake|   25 +---
 2 files changed, 58 insertions(+), 9 deletions(-)
 create mode 100644 Modules/CheckCXXSymbolExists.cmake


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-56-gdc96b97

2011-07-26 Thread Brad King
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  dc96b975c52f79ba332b15bc33048ae01108e0ab (commit)
   via  d6b9df409c98b2c859d79bf67f866387e3392ed6 (commit)
  from  a234b3a4fc1db950801407a0a464ab484b06eb05 (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=dc96b975c52f79ba332b15bc33048ae01108e0ab
commit dc96b975c52f79ba332b15bc33048ae01108e0ab
Merge: a234b3a d6b9df4
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:57:26 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:57:26 2011 -0400

Merge topic 'MinorImprovementToTryCompileDocs'

d6b9df4 Minor fix to try_compile() docs (#12333)


---

Summary of changes:
 Source/cmTryCompileCommand.h |9 +
 1 files changed, 5 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-58-g119dce3

2011-07-26 Thread Brad King
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  119dce33d3b51e01507e917ca53f1dd08a7a4c23 (commit)
   via  9dbba1b46421d4c45f7090f4573df6e73afccf69 (commit)
  from  dc96b975c52f79ba332b15bc33048ae01108e0ab (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=119dce33d3b51e01507e917ca53f1dd08a7a4c23
commit 119dce33d3b51e01507e917ca53f1dd08a7a4c23
Merge: dc96b97 9dbba1b
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:57:32 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:57:32 2011 -0400

Merge topic 'SetPropertyAppendString'

9dbba1b Fix #12342: Add APPEND_STRING option to set_property()


---

Summary of changes:
 Source/cmCacheManager.cxx   |   12 +++-
 Source/cmCacheManager.h |6 --
 Source/cmMakefile.cxx   |5 +++--
 Source/cmMakefile.h |2 +-
 Source/cmProperty.cxx   |4 ++--
 Source/cmProperty.h |2 +-
 Source/cmPropertyMap.cxx|4 ++--
 Source/cmPropertyMap.h  |2 +-
 Source/cmSetPropertyCommand.cxx |   20 ++--
 Source/cmSetPropertyCommand.h   |6 +-
 Source/cmSourceFile.cxx |6 --
 Source/cmSourceFile.h   |2 +-
 Source/cmTarget.cxx |5 +++--
 Source/cmTarget.h   |2 +-
 Source/cmTest.cxx   |4 ++--
 Source/cmTest.h |2 +-
 Source/cmake.cxx|4 ++--
 Source/cmake.h  |2 +-
 Tests/Properties/CMakeLists.txt |   18 ++
 19 files changed, 73 insertions(+), 35 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-63-g2305b57

2011-07-26 Thread Brad King
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  2305b575f11982c190e8c041fb65c05063ebc970 (commit)
   via  1a53fb7537c6f37f8ccfa418919b332a4928679a (commit)
   via  5f7acc8d75d736905d9f54badebc80ad196e8877 (commit)
   via  c050c592eef00a13bfc1e9bf31e45b2005588ccf (commit)
   via  923b030ed989472bc421379eecc5f8c979dc6ccb (commit)
  from  119dce33d3b51e01507e917ca53f1dd08a7a4c23 (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=2305b575f11982c190e8c041fb65c05063ebc970
commit 2305b575f11982c190e8c041fb65c05063ebc970
Merge: 119dce3 1a53fb7
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:57:38 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:57:38 2011 -0400

Merge topic 'fix-tests-failing-with-Xcode4'

1a53fb7 Use correct default multiple architecture values in test
5f7acc8 Base architecture choice logic on Xcode version
c050c59 Fix BuildDepends test to work with Xcode 4
923b030 Fix Architecture test to work with Xcode 4


---

Summary of changes:
 Tests/Architecture/CMakeLists.txt |   46 ++--
 Tests/BuildDepends/Project/CMakeLists.txt |   21 +
 2 files changed, 63 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-68-gc2b2968

2011-07-26 Thread Brad King
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  c2b29688250449e0b61a4c1308da0cb4f550c171 (commit)
   via  0ae8a3405bb32afadda13f43100484e85f7ef74f (commit)
  from  d6b2a1a9b3f28733e37057744dec119a0c9129db (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=c2b29688250449e0b61a4c1308da0cb4f550c171
commit c2b29688250449e0b61a4c1308da0cb4f550c171
Merge: d6b2a1a 0ae8a34
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:57:44 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:57:44 2011 -0400

Merge topic 'cross-qt4-find-includes'

0ae8a34 Add qt4/QtCore to help find Qt headers when cross-compiling.


---

Summary of changes:
 Modules/FindQt4.cmake |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-70-gdf7a956

2011-07-26 Thread Brad King
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  df7a95629c88a9ce32e9e4696c3d30f99338a5be (commit)
   via  702538eaa3315f3fcad9f1daea01e6a83928967b (commit)
  from  c2b29688250449e0b61a4c1308da0cb4f550c171 (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=df7a95629c88a9ce32e9e4696c3d30f99338a5be
commit df7a95629c88a9ce32e9e4696c3d30f99338a5be
Merge: c2b2968 702538e
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:57:48 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:57:48 2011 -0400

Merge topic 'qt4-apple-framework-fix'

702538e Qt4: Fix reference of undefined variable when detecting frameworks 
on Mac OS X


---

Summary of changes:
 Modules/FindQt4.cmake |   26 +-
 1 files changed, 13 insertions(+), 13 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-72-g5047a52

2011-07-26 Thread Brad King
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  5047a52d1cec004724188cef97b58c4c6aad469d (commit)
   via  bb3a4381bb252ce05f2bb5e9b8f7f706a28ddf21 (commit)
  from  df7a95629c88a9ce32e9e4696c3d30f99338a5be (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=5047a52d1cec004724188cef97b58c4c6aad469d
commit 5047a52d1cec004724188cef97b58c4c6aad469d
Merge: df7a956 bb3a438
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 14:57:53 2011 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Tue Jul 26 14:57:53 2011 -0400

Merge topic 'search-for-aspell'

bb3a438 Search for the ASPELL executable


---

Summary of changes:
 Modules/FindASPELL.cmake |   11 ---
 1 files changed, 8 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, next, updated. v2.8.5-1306-g2f6f787

2011-07-26 Thread Brad King
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, next has been updated
   via  2f6f7874d4cdf128740945b1d358429918974302 (commit)
   via  5047a52d1cec004724188cef97b58c4c6aad469d (commit)
   via  df7a95629c88a9ce32e9e4696c3d30f99338a5be (commit)
   via  c2b29688250449e0b61a4c1308da0cb4f550c171 (commit)
   via  d6b2a1a9b3f28733e37057744dec119a0c9129db (commit)
   via  2305b575f11982c190e8c041fb65c05063ebc970 (commit)
   via  119dce33d3b51e01507e917ca53f1dd08a7a4c23 (commit)
   via  dc96b975c52f79ba332b15bc33048ae01108e0ab (commit)
   via  a234b3a4fc1db950801407a0a464ab484b06eb05 (commit)
   via  ccd4c8b2025cb1cbd5ff5d6ae65ad9dab27b69d7 (commit)
   via  9ac8c938bbe9b63bc9ef0f883d2bc5cea42f6735 (commit)
   via  0cfd25681ca0e840f0198ff21f6910efcfe70125 (commit)
   via  25a35f5686d7a72a4da8508be5d562c6c225664a (commit)
   via  e25c0d046af09776743e55035c4bf4e8f3a16b11 (commit)
   via  7453581c78236d54311e96ec6b5741f07898438b (commit)
   via  9340ab28cc551897c2972b4dde1bfe1fc3803635 (commit)
   via  4a18c30a428940e6f78805323b365aab364d85f8 (commit)
   via  2b16232d4535cf438be879d86c013e9945dc9f52 (commit)
   via  b3dba1a145974361d8afa56ffa66aaadb4e3cb01 (commit)
  from  6e0f12c39a13a096cc597993dc6e415944f5181c (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=2f6f7874d4cdf128740945b1d358429918974302
commit 2f6f7874d4cdf128740945b1d358429918974302
Merge: 6e0f12c 5047a52
Author: Brad King brad.k...@kitware.com
AuthorDate: Tue Jul 26 15:01:29 2011 -0400
Commit: Brad King brad.k...@kitware.com
CommitDate: Tue Jul 26 15:01:29 2011 -0400

Merge branch 'master' into next


---

Summary of changes:


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.5-73-g49a00ec

2011-07-26 Thread KWSys Robot
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  49a00ec2def5882aa056638c3ae0b3088157de93 (commit)
  from  5047a52d1cec004724188cef97b58c4c6aad469d (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=49a00ec2def5882aa056638c3ae0b3088157de93
commit 49a00ec2def5882aa056638c3ae0b3088157de93
Author: KWSys Robot kwro...@kitware.com
AuthorDate: Wed Jul 27 00:01:04 2011 -0400
Commit: KWSys Robot kwro...@kitware.com
CommitDate: Wed Jul 27 00:14:05 2011 -0400

KWSys Nightly Date Stamp

diff --git a/Source/kwsys/kwsysDateStamp.cmake 
b/Source/kwsys/kwsysDateStamp.cmake
index d53ea09..33cd79b 100644
--- a/Source/kwsys/kwsysDateStamp.cmake
+++ b/Source/kwsys/kwsysDateStamp.cmake
@@ -18,4 +18,4 @@ SET(KWSYS_DATE_STAMP_YEAR  2011)
 SET(KWSYS_DATE_STAMP_MONTH 07)
 
 # KWSys version date day component.  Format is DD.
-SET(KWSYS_DATE_STAMP_DAY   26)
+SET(KWSYS_DATE_STAMP_DAY   27)

---

Summary of changes:
 Source/kwsys/kwsysDateStamp.cmake |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits