Re: [CMake] How to make dependency scanner ignore some paths?

2010-01-12 Thread Pavel Shevaev
> The code is in Source/cmDependsC.cxx.
> I think it's already quite optimized, but feel free to have a look at it :-)

Thanks, I'll have a look.

-- 
Best regards, Pavel
___
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] intercomponent link dependencies?

2010-01-12 Thread Michael Wild

On 13. Jan, 2010, at 1:55 , Nico Schlömer wrote:

> Pheeew..
> So I've now been trying to include one *single* library from an
> external project (liba.a) into my own project, writing FindA.cmake.
> Somehow I still fail to apply the dependencies correctly. What I do is
> 
> [...]
> ADD_LIBRARY(A STATIC IMPORTED)
> SET_TARGET_PROPERTIES( A PROPERTIES
> IMPORTED_LOCATION
> "${A_LIBRARY}" %set above
> LINK_INTERFACE_LIBRARIES
> "${A_LINK_INTERFACE_LIBRARIES}"   % set above to something like
> "/usr/lib/liblapack.a;/usr/lib/blas.a;"
>   )
> [...]
> 
> [Setting TARGET_LINK_LIBRARIES(A LINK_INTERFACE_LIBRARIES
> "${A_LINK_INTERFACE_LIBRARIES}" ) did *not* work for me.]
> 
> Now,  in the main CMakeLists.txt I say Find( A REQUIRED ), and I was
> naivly expecting that upon
> 
> TARGET_LINK_LIBRARIES ( main.out A )
> 
> *all* the dependent libraries would be pulled in too. This is not the case. :/
> 
> What am I missing?
> 
> Cheers,
> Nico
> 
> 


for IMPORTED targets it is IMPORTED_LINK_INTERFACE_LIBRARIES and 
IMPORTED_LINK_INTERFACE_LIBRARIES_ if you need different libraries for 
DEBUG, RELEASE etc: 
http://www.cmake.org/cmake/help/cmake-2-8-docs.html#prop_tgt:IMPORTED_LINK_INTERFACE_LIBRARIES


HTH

Michael

___
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] using cmake on windows - query on existing targets

2010-01-12 Thread Chris Hillery
On Tue, Jan 12, 2010 at 2:04 PM, Bill Hoffman wrote:

>
> What version of the compiler did you install?  The commercial versions of
> the compiler have a VS command prompt under the tools menu that you can use
> to create a shell with the correct env to run the compiler.
>
> The same is true for the free Visual Studio Express (which somewhat
confusingly is NOT identified as "the free VC compiler" by CMake, but it all
works fine).

Ceej
aka Chris Hillery
___
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] intercomponent link dependencies?

2010-01-12 Thread Nico Schlömer
Pheeew..
So I've now been trying to include one *single* library from an
external project (liba.a) into my own project, writing FindA.cmake.
Somehow I still fail to apply the dependencies correctly. What I do is

[...]
ADD_LIBRARY(A STATIC IMPORTED)
SET_TARGET_PROPERTIES( A PROPERTIES
 IMPORTED_LOCATION
"${A_LIBRARY}" %set above
 LINK_INTERFACE_LIBRARIES
"${A_LINK_INTERFACE_LIBRARIES}"   % set above to something like
"/usr/lib/liblapack.a;/usr/lib/blas.a;"
   )
[...]

[Setting TARGET_LINK_LIBRARIES(A LINK_INTERFACE_LIBRARIES
"${A_LINK_INTERFACE_LIBRARIES}" ) did *not* work for me.]

Now,  in the main CMakeLists.txt I say Find( A REQUIRED ), and I was
naivly expecting that upon

TARGET_LINK_LIBRARIES ( main.out A )

*all* the dependent libraries would be pulled in too. This is not the case. :/

What am I missing?

Cheers,
Nico





On Fri, Jan 8, 2010 at 11:00 AM, Nico Schlömer  wrote:
> Hi,
>
>> I am guessing that
>> you're putting the detection for every library that your app can/must use
>> into one "find" module, when you actually probably should have a directory
>> in your source tree added to your CMAKE_MODULE_PATH that contains a large
>> number of find modules, some of which are interdependent (just like how the
>> example I sent uses find_package(BLAS) - which is a module that comes
>> bundled with cmake).
>
> -- Exactly!
>
> I'm thinking now that this is indeed a good solution: Writing
> *separate* FindLibraryX.cmake files for all the libraries included in
> MyPackage and putting all the dependency information in there; then,
> make a meta .cmake file which will allow for specifying the keyword
> COMPONENTS, and where all the meta information goes (e.g., version
> number of MyPackage).
>
> Minor drawbacks of this approach I find would be that the fact that
> all those libraries live under one roof is entirely discarded, that
> is, that they all share a common LIB directory, INCLUDE directory, all
> have the same version string (namely the one of MyPackage). Plus also,
> new libraries included require their own new FindNewLib.cmake to be
> created, while all FindLibrary*.cmake would actually be the same file,
> except for the dependency info (nasty (?) code duplication).
>
> How I came to think about COMPONENTS in the first place was looking at
> FindBoost.cmake which I *thought does what I'm doing -- except for the
> intercomponent linking info.
>
> Cheers!
> Nico
>
___
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] configure_file without continuous re-build

2010-01-12 Thread Daniel Blezek
Hmmm,  I'll dig a little deeper to see what's hapening.

Thanks,
-dan


On 1/12/10 4:25 PM, "Bill Hoffman"  wrote:

> Daniel Blezek wrote:
>> Hi Mike,
>> 
>>   Sorry, I guess I wasn't quite clear.  The re-builds occur when I touch any
>> CMakeLists.txt file in the entire project.  Since we're under active
>> development, new source files are being added fairly frequently.  I didn't
>> want re-builds to trigger each time a developer adds a new class.
>> 
>>   I believe that configure_file() is re-run whenever CMake does a
>> "Generate", not only when the .in file is modified.  On a normal build this
>> isn't an issue, but is a problem for us.
>> 
>>   Putting the "NOT EXISTS" guard seems to solve the problem, but is a little
>> ugly.
>> 
> configure_file will only write the file if it changes.   You must be
> changing the file each time cmake is run, which is bad
> 
> -Bill

-- 
Daniel Blezek, PhD
Medical Imaging Informatics Innovation Center

P 127 or (77) 8 8886
T 507 538 8886
E blezek.dan...@mayo.edu

Mayo Clinic
200 First St. S.W.
Harwick SL-44
Rochester, MN 55905
mayoclinic.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] configure_file without continuous re-build

2010-01-12 Thread Bill Hoffman

Daniel Blezek wrote:

Hi Mike,

  Sorry, I guess I wasn't quite clear.  The re-builds occur when I touch any
CMakeLists.txt file in the entire project.  Since we're under active
development, new source files are being added fairly frequently.  I didn't
want re-builds to trigger each time a developer adds a new class.

  I believe that configure_file() is re-run whenever CMake does a
"Generate", not only when the .in file is modified.  On a normal build this
isn't an issue, but is a problem for us.

  Putting the "NOT EXISTS" guard seems to solve the problem, but is a little
ugly.

configure_file will only write the file if it changes.   You must be 
changing the file each time cmake is run, which is bad


-Bill
___
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] configure_file without continuous re-build

2010-01-12 Thread Daniel Blezek
Hi Mike,

  Sorry, I guess I wasn't quite clear.  The re-builds occur when I touch any
CMakeLists.txt file in the entire project.  Since we're under active
development, new source files are being added fairly frequently.  I didn't
want re-builds to trigger each time a developer adds a new class.

  I believe that configure_file() is re-run whenever CMake does a
"Generate", not only when the .in file is modified.  On a normal build this
isn't an issue, but is a problem for us.

  Putting the "NOT EXISTS" guard seems to solve the problem, but is a little
ugly.

Cheers,
-dan


On 1/12/10 3:00 PM, "Michael Jackson"  wrote:

> you shouldn't have to do that. There are multitudes of projects that
> do exactly what you are doing and don't have continuous rebuilds. Now,
> having said that I am _assuming_ that osconfig.h.in is NOT being
> changed, generated, updated or in any way changed? osconfig.h.in being
> changed would cause "configure_file()" to re-run which will regenerate
> the osconfig.h file.
> 
>Early in the HDF5/CMake port we were doing exactly that which
> caused HDF5 to be rebuilt just about completely because the "H5conf.h"
> file was always being generated at cmake time.
> 
> _
> Mike Jackson  mike.jack...@bluequartz.net
> BlueQuartz Softwarewww.bluequartz.net
> Principal Software Engineer  Dayton, Ohio
> 
> On Jan 12, 2010, at 3:51 PM, Tyler Roscoe wrote:
> 
>> On Tue, Jan 12, 2010 at 02:09:36PM -0600, Daniel Blezek wrote:
>>> CONFIGURE_FILE(${DCMTK_SOURCE_DIR}/osconfig.h.in
>>>   ${DCMTK_BINARY_DIR}/include/dcmtk/config/osconfig.h)
>>> 
>>> However, every time I touch a CMake file, ³osconfig.h² is
>>> regenerated,
>>> causing nearly the entire library to re-build because of
>>> dependancies.  Is
>>> this a good/proper/recommended way to guard against regeneration of
>>> the
>>> file?
>> 
>> You could configure_file() to a temporary location, then
>> 'cmake -E copy_if_different' from the temp location to the real
>> location. This way, the real osconfig.h is only updated (and the
>> dependent parts of the build are re-compiled) if something has
>> changed.
>> 
>> tyler
>> ___
>> 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

-- 
Daniel Blezek, PhD
Medical Imaging Informatics Innovation Center

P 127 or (77) 8 8886
T 507 538 8886
E blezek.dan...@mayo.edu

Mayo Clinic
200 First St. S.W.
Harwick SL-44
Rochester, MN 55905
mayoclinic.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] using cmake on windows - query on existing targets

2010-01-12 Thread Bill Hoffman




I noticed that it generates the following output:
-- Check if this is a free VC compiler - yes
I do not think I am using a free VC compiler, something is wrong here.
Is it possible to use nmake with Visual Studio 2008 compiler using cmake
2.8?



Are you running cmake from a shell that has the environment setup 
correctly for cl to work?



foo.cxx
#include 
int main() { std::cout << "hello\n";}

cl foo.cxx

Does that work for you?

What version of the compiler did you install?  The commercial versions 
of the compiler have a VS command prompt under the tools menu that you 
can use to create a shell with the correct env to run the compiler.


-Bill

___
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] using cmake on windows - query on existing targets

2010-01-12 Thread John Drescher
> I noticed that it generates the following output:
> -- Check if this is a free VC compiler - yes
> I do not think I am using a free VC compiler, something is wrong here.
> Is it possible to use nmake with Visual Studio 2008 compiler using cmake
> 2.8?
>

I just tested this on my build box and similar errors that you had
about not finding the compiler. Then I ran cmake-gui from the "Visual
Studio 2008 Command Prompt" and all was well.

John
___
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] using cmake on windows - query on existing targets

2010-01-12 Thread Chauhan, Vikas


> > Did you try the Nmake generator and call
> >
> > nmake help
> >
> Thanks, I tried using nmake generator i.e. - cmake ../ -G "NMake
Makefiles"-  but
> it does not work in cmake 2.8. It fails to find the compiler. However
the
> command - cmake ../ -G "Visual Studio 9 2008" - works fine. The errors
I get are
> as:
> 
> -- The C compiler identification is unknown
> -- The CXX compiler identification is unknown
> CMake Error: your RC compiler: "CMAKE_RC_COMPILER-NOTFOUND" was not
> found.   Please set CMAKE_RC_COMPILER to a valid compiler path or
name.
> -- Check for CL compiler version
> -- Check for CL compiler version - failed
> -- Check if this is a free VC compiler
> -- Check if this is a free VC compiler - yes
> -- Check CL platform
> -- Check CL platform - 64 bit
> -- Using FREE VC TOOLS, NO DEBUG available
> -- Check for working C compiler: cl
> CMake Error at C:/Program Files/CMake 2.8/share/cmake-
> 2.8/Modules/CMakeRCInformation.cmake:22 (GET_FILENAME_COMPONENT):
>   get_filename_component called with incorrect number of arguments
> Call Stack (most recent call first):
>   C:/Program Files/CMake 2.8/share/cmake-2.8/Modules/Platform/Windows-
> cl.cmake:32 (ENABLE_LANGUAGE)
>   C:/Program Files/CMake 2.8/share/cmake-
> 2.8/Modules/CMakeCInformation.cmake:58 (INCLUDE)
>   CMakeLists.txt:2 (PROJECT)
> 
> 
> CMake Error: CMAKE_RC_COMPILER not set, after EnableLanguage
> CMake Error: your C compiler: "cl" was not found.   Please set
> CMAKE_C_COMPILER to a valid compiler path or name.
> CMake Error: Internal CMake error, TryCompile configure of cmake
failed
> -- Check for working C compiler: cl -- broken
> CMake Error at C:/Program Files/CMake 2.8/share/cmake-
> 2.8/Modules/CMakeTestCCompiler.cmake:50 (MESSAGE):
>   The C compiler "cl" is not able to compile a simple test program.
> 
>   It fails with the following output:
> 
> 
>   CMake will not be able to correctly generate this project.
> Call Stack (most recent call first):
>   CMakeLists.txt:4 (project)
> 
> 
> CMake Error: your C compiler: "cl" was not found.   Please set
> CMAKE_C_COMPILER to a valid compiler path or name.
> CMake Error: your CXX compiler: "cl" was not found.   Please set
> CMAKE_CXX_COMPILER to a valid compiler path or name.
> -- Configuring incomplete, errors occurred!
> 

I noticed that it generates the following output:
-- Check if this is a free VC compiler - yes
I do not think I am using a free VC compiler, something is wrong here.
Is it possible to use nmake with Visual Studio 2008 compiler using cmake
2.8?

> > > 2. the user should be able to choose a sub-component to build
without
> > > asking to build the whole component. Also, I do not want to be
> > > generating build files every time I choose to build a different
> > > sub-component.
> >
> > nmake subcomponent
> 
> I will try once I get nmake generation to work.
> >
> > > Is this possible?
> > >
> > > Please note that I am on windows. I guess this is easily possible
on
> > > Linux. As make allows you to query a list of targets & can build
> > > specific targets as well. Please correct me if I am wrong.
> >
> > I bet nmake should support more or less the same set
> > of target than unix make, but since I'm not a experienced Windows
user
> > I may be wrong.
> >
> > If the Nmake generator does not suit your need may be the MSYS
Makefile
> would?
> >
> >
___
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] error while stage install of crosscompiled binaries

2010-01-12 Thread Claus Klein

Alexander Neundorf schrieb:
...
So indeed a relative CMAKE_INSTALL_PREFIX is interpreted relative to the build 
dir.


Do you think this should be handled differently ?
Then c:/usr would have to be translated at some point to "/c:/usr" if cross 
compiling on some UNIX.

Would this make sense ?

Alex

_

Hi Alex,

No, I think it is good as it is, but it is important to document this feature 
while crosscompiling!

For me it was unexpected. The build error was caused by another reason 
(DESTINATION or SOURCE was also absolute)
as I explained in my other response. In this case, the error was good.

The device prefix is also not a good idea in zip archives which should be 
extracted on Windows.

I wrote this

In case you crosscompile on an UNIX build host for a window target system(i.e. 
minGW):

.. Attention:: If a windows drive letter is given with CMAKE_INSTALL_PREFIX, 
	the files are installed under builddir/C:/usr/... when you do 'make install' only!
	So create a zip archive from usr (without C:/) and it works on Windows XP, nice  ;-) 

For me the only open question is what happens in this case on windows? 
But I work not on Windows if I have a choice.


Claus

___
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] configure_file without continuous re-build

2010-01-12 Thread Michael Jackson
you shouldn't have to do that. There are multitudes of projects that  
do exactly what you are doing and don't have continuous rebuilds. Now,  
having said that I am _assuming_ that osconfig.h.in is NOT being  
changed, generated, updated or in any way changed? osconfig.h.in being  
changed would cause "configure_file()" to re-run which will regenerate  
the osconfig.h file.


  Early in the HDF5/CMake port we were doing exactly that which  
caused HDF5 to be rebuilt just about completely because the "H5conf.h"  
file was always being generated at cmake time.


_
Mike Jackson  mike.jack...@bluequartz.net
BlueQuartz Softwarewww.bluequartz.net
Principal Software Engineer  Dayton, Ohio

On Jan 12, 2010, at 3:51 PM, Tyler Roscoe wrote:


On Tue, Jan 12, 2010 at 02:09:36PM -0600, Daniel Blezek wrote:

CONFIGURE_FILE(${DCMTK_SOURCE_DIR}/osconfig.h.in
  ${DCMTK_BINARY_DIR}/include/dcmtk/config/osconfig.h)

However, every time I touch a CMake file, ³osconfig.h² is  
regenerated,
causing nearly the entire library to re-build because of  
dependancies.  Is
this a good/proper/recommended way to guard against regeneration of  
the

file?


You could configure_file() to a temporary location, then
'cmake -E copy_if_different' from the temp location to the real
location. This way, the real osconfig.h is only updated (and the
dependent parts of the build are re-compiled) if something has  
changed.


tyler
___
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] configure_file without continuous re-build

2010-01-12 Thread Tyler Roscoe
On Tue, Jan 12, 2010 at 02:09:36PM -0600, Daniel Blezek wrote:
> CONFIGURE_FILE(${DCMTK_SOURCE_DIR}/osconfig.h.in
>${DCMTK_BINARY_DIR}/include/dcmtk/config/osconfig.h)
> 
> However, every time I touch a CMake file, ³osconfig.h² is regenerated,
> causing nearly the entire library to re-build because of dependancies.  Is
> this a good/proper/recommended way to guard against regeneration of the
> file?

You could configure_file() to a temporary location, then
'cmake -E copy_if_different' from the temp location to the real
location. This way, the real osconfig.h is only updated (and the
dependent parts of the build are re-compiled) if something has changed.

tyler
___
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] configure_file without continuous re-build

2010-01-12 Thread Daniel Blezek
We have a large-ish system.  Deep within an included utility class, I have
this code:

CONFIGURE_FILE(${DCMTK_SOURCE_DIR}/osconfig.h.in
   ${DCMTK_BINARY_DIR}/include/dcmtk/config/osconfig.h)

However, every time I touch a CMake file, ³osconfig.h² is regenerated,
causing nearly the entire library to re-build because of dependancies.  Is
this a good/proper/recommended way to guard against regeneration of the
file?

# NB: you would need to delete the configured osconfig.h to re-generate.
if ( NOT EXISTS ${DCMTK_BINARY_DIR}/include/dcmtk/config/osconfig.h)
message ( STATUS "Reconfigure" )
CONFIGURE_FILE(${DCMTK_SOURCE_DIR}/osconfig.h.in
   ${DCMTK_BINARY_DIR}/include/dcmtk/config/osconfig.h)
endif()


Or is there some little known, little documented CMake feature that I don¹t
know about?

Thanks,
-dan

-- 
Daniel Blezek, PhD
Medical Imaging Informatics Innovation Center

P 127 or (77) 8 8886
T 507 538 8886
E blezek.dan...@mayo.edu

Mayo Clinic
200 First St. S.W.
Harwick SL-44
Rochester, MN 55905
mayoclinic.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] How to make dependency scanner ignore some paths?

2010-01-12 Thread Alexander Neundorf
On Tuesday 12 January 2010, Pavel Shevaev wrote:
> On Mon, Jan 11, 2010 at 11:53 PM, Alexander Neundorf
>
>  wrote:
> > On Monday 11 January 2010, Pavel Shevaev wrote:
> >> On Sat, Dec 26, 2009 at 2:20 PM, Pavel Shevaev 
> >
> > wrote:
> >> > Guys, what is the best way to to make the dependency scanner ignore
> >> > some paths?
> >
> > how long does it take if you don't set include_regular_expression() ?
>
> It's almost to 3 times slower. Minimal build time(when nothing is
> actually built, only dependency checks are done) is 8 sec. with
> include_regular_expression vs 23 sec. without one.
>
> > 2.8.0 is a bit faster than previous versions. Did you try that ?
>
> Yep, I'm already using it. I haven't noticed any great speedup though...
>
> Is it possible to turn on some debug info showing which paths matched
> include regular expression and which didn't? This

The code is in Source/cmDependsC.cxx.
I think it's already quite optimized, but feel free to have a look at it :-)

Alex
___
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] How to make dependency scanner ignore some paths?

2010-01-12 Thread Pavel Shevaev
On Mon, Jan 11, 2010 at 11:53 PM, Alexander Neundorf
 wrote:
> On Monday 11 January 2010, Pavel Shevaev wrote:
>> On Sat, Dec 26, 2009 at 2:20 PM, Pavel Shevaev 
> wrote:
>> > Guys, what is the best way to to make the dependency scanner ignore some
>> > paths?
>
> how long does it take if you don't set include_regular_expression() ?

It's almost to 3 times slower. Minimal build time(when nothing is
actually built, only dependency checks are done) is 8 sec. with
include_regular_expression vs 23 sec. without one.

> 2.8.0 is a bit faster than previous versions. Did you try that ?

Yep, I'm already using it. I haven't noticed any great speedup though...

Is it possible to turn on some debug info showing which paths matched
include regular expression and which didn't? This
include_regular_expression thing is a real black box :D

-- 
Best regards, Pavel
___
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] Generating for Xbox 360 and PS3

2010-01-12 Thread David Genest
Hi, 

I have searched a lot for a way to use cmake in a xbox360 environment, but have 
not found any answers. 

I want to use cmake to generate the .vcproj environment for developing on the 
xbox 360 and on PS3. On PS3 it seems quite easy because you only need to define 
the VSI integration pre-processor defines and linker configuration.

But... On Xbox 360 it is another issue, primarily because of the additional 
platform.

Is anyone on the list familiar with a cmake xbox 360 setup? Do you use a 
customized version of the visual studio generator to support the additional 
platform ?

Thank you for any help you can provide, 

David.
___
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] Fortran 90 module support for Pathscale-3.2

2010-01-12 Thread K. Noel Belcourt

Hi,

I've started running nightly cmake tests and submitting them to your  
dashboard.  I was hoping the nightly tests would pick up this problem  
I'm having.  When compiling Fortran90 code with pathscale-3.2  
(pathf90), I get this error.


pathf90 ERROR parsing -J../module: unknown flag

It seems this is set in this file.

	./Modules/Platform/Linux-GNU-Fortran.cmake:SET 
(CMAKE_Fortran_MODDIR_FLAG -J)


But -J isn't common to all Fortran90 compilers (though it works fine  
for gfortran).  Is there a way to generalize this and add a test that  
will exercise this capability?


-- Noel


___
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] Fortran version of FindMPI

2010-01-12 Thread Moreland, Kenneth
I think that's a fine idea, but I will leave it to whomever maintains the 
Module in CMake.

-Ken


On 1/12/10 12:55 AM, "Michael Wild"  wrote:



On 11. Jan, 2010, at 22:26 , Moreland, Kenneth wrote:

> I have a simple Fortran program that uses MPI that I am trying to configure 
> with CMake.  The problem is that although the FindMPI module finds the C 
> libraries for MPI, it does not find the Fortran libraries.  To get around 
> this I copied the FindMPI.cmake from the CMake distribution and did some 
> edits and a few search-and-replaces to find the Fortran version of the 
> library.  It seems to work well enough on my system (using OpenMPI) with the 
> exception of finding some system 64-bit libraries (which is actually caused 
> by a CMake bug that I just submitted a report for 
> http://www.paraview.org/Bug/view.php?id=10119).  The module is attached.  Is 
> there any interest in placing this with the CMake distribution or integrating 
> into the existing FindMPI module?
>
> -Ken
>

Hi Ken

Wouldn't this be a good case to use COMPONENTS? E.g. find_package(MPI 
COMPONENTS C) or find_package(MPI COMPONENTS Fortran). If nothing is specified, 
the default could be to look at global ENABLED_LANGUAGES property and go on 
from there and discover all components that are listed in there (i.e. C, CXX or 
Fortran).


Michael





     Kenneth Moreland
***  Sandia National Laboratories
***
*** *** ***  email: kmo...@sandia.gov
**  ***  **  phone: (505) 844-8919
***  web:   http://www.cs.unm.edu/~kmorel

___
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] File permissions issue

2010-01-12 Thread Johannes Felten
Hi Brad,

issue number is 10126: http://www.cmake.org/Bug/view.php?id=10126

Haven't had much time to add a patch, sorry.

Thanks,
Johannes


2010/1/12 Brad King 

> Johannes Felten wrote:
> > I took a look at the CMake 2.8.0 sourcecode and tracked it down to
> > Source/kwsys/ProcessUNIX.c in function kwsysProcessSetupOutputPipeFile I
> > believe.
> > I wonder why CMake sets the permissions explicitly to 644 here. Is this
> > a bug or done intentionally?
>
> Nice find; it's a bug.  Please open an issue tracker entry:
>
>  http://www.cmake.org/Bug
>
> and send me the issue number.  If you have a patch please attach it
> to the issue.
>
> Thanks,
> -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] File permissions issue

2010-01-12 Thread Brad King
Johannes Felten wrote:
> I took a look at the CMake 2.8.0 sourcecode and tracked it down to
> Source/kwsys/ProcessUNIX.c in function kwsysProcessSetupOutputPipeFile I
> believe.
> I wonder why CMake sets the permissions explicitly to 644 here. Is this
> a bug or done intentionally?

Nice find; it's a bug.  Please open an issue tracker entry:

  http://www.cmake.org/Bug

and send me the issue number.  If you have a patch please attach it
to the issue.

Thanks,
-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] Overriding CMAKE_C_FLAGS on a per-directory basis

2010-01-12 Thread C. Meissa
Hello,

Am Freitag, 8. Januar 2010 schrieb Marcel Loose:
> If you've set the flags "-foo -bar" using add_definitions(), instead of
> manipulating CMAKE_C_FLAGS directly, you can use
>
>   set_directory_properties(PROPERTIES COMPILE_DEFINITIONS "-baz")

Currently I manually set CMAKE_Fortran_FLAGS_DEBUG where DEBUG is set inside
CMAKE_BUILD_TYPE

Does this add_definitions()-technique keep track of the build type?

thx
C.M.
___
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