Re: [CMake] What is the preferred method of establishing the dependence of a custom command on an executable target?

2007-04-08 Thread Alan W. Irwin
for CMake, can I always rely on target dependencies always taking precedence over file dependencies from here on out? Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming

Re: [CMake] What is the preferred method of establishing the dependence of a custom command on an executable target?

2007-04-08 Thread Alan W. Irwin
On 2007-04-08 15:26-0700 Brandon J. Van Every wrote: Alan W. Irwin wrote: t f library = target = command \ \ t === executable This new arrangement bypasses the whole issue of having a custom

Re: [CMake] Multiple generators on the same library

2007-04-11 Thread Alan W. Irwin
/Wiki/CMake_FAQ. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net

Re: [CMake] Simple truth question

2007-04-11 Thread Alan W. Irwin
, and it will. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot

Re: [CMake] SET_TARGET_PROPERTIES LINK_FLAGS not working

2007-04-12 Thread Alan W. Irwin
__ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot scientific plotting software package

Re: [CMake] Multiple generators on the same library

2007-04-12 Thread Alan W. Irwin
change since so many stumble over that feature despite the FAQ (http://www.cmake.org/Wiki/CMake_FAQ#I_run_an_out-of-source_build_but_CMake_generates_in-source_anyway._Why.3F) entry warning users about it. Alan __ Alan W. Irwin Astronomical research affiliation with Department

Re: [CMake] Multiple generators on the same library

2007-04-12 Thread Alan W. Irwin
On 2007-04-12 22:12-0400 Bill Hoffman wrote: Alan W. Irwin wrote: CMake is a great program, once you get to grips with it, more examples for the documentation would make that much easier. however http://www.cmake.org/HTML/RunningCMake.html The in-source and out-of-source build

[CMake] Bug in SET ?

2007-04-13 Thread Alan W. Irwin
you try is a bug in 2.4.6, but I would like to see some discussion here before I make a bug report about this. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming

Re: [CMake] Bug in SET ?

2007-04-17 Thread Alan W. Irwin
On 2007-04-16 09:30-0700 Alan W. Irwin wrote: My opinion is that the FORCE option to SET should _always_ force the specified cache value (as is currently documented and as seems intuitive to users). When you get situations like above where it doesn't always force the value, it can be quite

Re: [CMake] How to use icc on linux with cmake.

2007-04-17 Thread Alan W. Irwin
__ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot scientific plotting software package

Re: [CMake] Really Basic Question

2007-04-18 Thread Alan W. Irwin
$(items_to_buy)) MESSAGE( $(items_to_buy) ) when I run either ccmake . or cmake, ther is no expansion of $(items_to_buy). Do I need something else in the file? Yes, variable expansion requires curly braces and not parentheses: $(items_to_buy) == ${items_to_buy} Alan __ Alan W

Re: [CMake] Visual Studio - dependencies

2007-04-19 Thread Alan W. Irwin
On 2007-04-19 15:04+0200 Vitor Vasconcelos Araujo Silva wrote: [...]So, the question: Is it possible to control this kind of dependecies/behavior from CMakeLists files? Yes. Look up ADD_DEPENDENCIES at http://cmake.org/HTML/Documentation.html. Alan __ Alan W. Irwin

Re: [CMake] Visual Studio - dependencies

2007-04-19 Thread Alan W. Irwin
__ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot scientific

Re: [CMake] re include problem

2007-04-20 Thread Alan W. Irwin
instead. Note that command has different syntax (someone else recommended this command as well). In its simplest form it is FIND_PACKAGE(KDE3) (which also works on Linux). Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy

Re: [CMake] FindXXX.cmake specification inconsistency

2007-04-21 Thread Alan W. Irwin
manner so we all don't end up spinning our wheels with our own private fixes. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation

Re: [CMake] FindXXX.cmake specification inconsistency

2007-04-21 Thread Alan W. Irwin
instances) the directions in readme.txt are being followed. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state

Re: [CMake] segfault with ccmake, not with cmake

2007-04-22 Thread Alan W. Irwin
why you missed ENABLE_LANGUAGE. Currently its documentation says ENABLE_LANGUAGE Set a name for the entire project. After that bad start the rest of the ENABLE_LANGUAGE documentation does indicate how to use ENABLE_LANGUAGE. Alan __ Alan W. Irwin Astronomical

Re: [CMake] install and rpath question

2007-04-23 Thread Alan W. Irwin
believe that is something new since I got my rpaths working properly for PLplot half a year ago, and it seems to me it might be a much easier solution (although I haven't tried it yet). Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics

Re: [CMake] lib dependencies

2007-04-26 Thread Alan W. Irwin
with CMake will be a help to you. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar

Re: [CMake] begginer Q on generated headers with generated tool

2007-04-30 Thread Alan W. Irwin
that is always executed when the library is built depends on that custom command. The result of this seemingly complicated arrangement is efficiency; the header is generated only when absolutely needed so there are no unnecessary rebuilds of the library. Alan __ Alan W. Irwin

Re: [CMake] Help getting -l and -L arguments from apr-config

2007-05-02 Thread Alan W. Irwin
the pkg_check_modules macro in that module file delivers nicely parsed (and complete) pkg-config results. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming

Re: [CMake] how to avoid deletion of add_custom_commands generated files?

2007-05-04 Thread Alan W. Irwin
, and you will have to change any CMake file dependencies that depend on ${tsfiles} to timestamp_tsfiles. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations

Re: [CMake] question on file dependencies

2007-05-05 Thread Alan W. Irwin
__ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot scientific plotting software

Re: [CMake] Creating project distribution using cpack.

2007-05-08 Thread Alan W. Irwin
as well as other bits of cpack documentation you can find by searching the wiki for cpack. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations

Re: [CMake] Re: heads up on convenience lib ? and a problem on source files with similar names...

2007-05-09 Thread Alan W. Irwin
__ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot scientific plotting software

Re: [CMake] FindQt4.cmake broken without C language

2007-05-10 Thread Alan W. Irwin
by lack of C support. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors

Re: [CMake] FindQt4.cmake broken without C language

2007-05-10 Thread Alan W. Irwin
On 2007-05-11 00:07+0200 Hendrik Sattler wrote: Am Donnerstag 10 Mai 2007 19:39 schrieb Alan W. Irwin: [...]This error is caused by lack of C support. Yes. It is obviously that way. But it is kind of non-sense to require a C compiler for a library like Qt4. I think you are probably correct

Re: [CMake] Portable deactivation of C++ check

2007-05-13 Thread Alan W. Irwin
__ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot scientific plotting software package

Re: [CMake] fortran, modules and case

2007-05-16 Thread Alan W. Irwin
/hello_program.o.requires'. Stop. The ugly workaround for this bug is to create that required file using touch hello_module.mod.proxy. Hope you can find a bug fix for this case as well. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy

Re: [CMake] fortran, modules and case

2007-05-16 Thread Alan W. Irwin
On 2007-05-16 14:06-0700 Alan W. Irwin wrote: Hi Andrew: Just out of curiosity I tried your patch (to 2.4.6) to see whether it would make any difference to bug 3984, A fortran 95 module dependency issue. As expected (everything is in lower case in the attached simple example), it makes

Re: [CMake] Module FindTCL behaves differently on Linux and Mac OS X

2007-05-17 Thread Alan W. Irwin
://www.cmake.org/Wiki/CMake_Useful_Variables). Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation

[CMake] What is the correct way to specify multiple OBJECT_DEPENDS for a given source file?

2007-05-19 Thread Alan W. Irwin
, but it appears to only use the last one when you are specifying the same property (OBJECT_DEPENDS). So what is the correct way to set up source-file dependencies on files in another directory? I am using cmake-2.4.6 on a Linux (Debian sarge) platform. Alan __ Alan W. Irwin

Re: [CMake] cmake version 2.5-20060616 -- INSTALL(DIRECTORY ...) broken?

2007-05-22 Thread Alan W. Irwin
__ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot scientific plotting software package

Re: [CMake] CMake for C# solutions?

2007-05-22 Thread Alan W. Irwin
# support. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net

Re: [CMake] [Cygwin] SET_TARGET_PROPERTIES does not work fine

2007-05-22 Thread Alan W. Irwin
need. Store those results in different CMake variables, then use SET_SOURCE_FILES_PROPERTIES to set the compile flags, and use TARGET_LINK_LIBRARIES to link your executable target to the external library (specified with its full path). Alan __ Alan W. Irwin Astronomical

Re: [CMake] install phase policies

2007-05-23 Thread Alan W. Irwin
talking with the PLplot windows developers is all is not so rosy in that build-tree case because windows doesn't have the rpath facility. Those experienced with windows may be able to help you work around that issue with the windows tool chain. Alan __ Alan W. Irwin

Re: [CMake] One item from a list?

2007-05-23 Thread Alan W. Irwin
On 2007-05-23 14:39-0600 [EMAIL PROTECTED] wrote: Forgive me if this is a dumb n00b question, but is there a way to retrieve a single item from a list in CMake? I need to parse the returned output of EXEC_PROGRAM. LIST(GET... Alan __ Alan W. Irwin Astronomical

[CMake] Requested documentation tweak

2007-05-23 Thread Alan W. Irwin
of such plural/singular problems becomes magnified. Thus, this fix makes the meaning much clearer. I hope some responsible CMake developer will immediately take about 10 seconds to make this documentation fix in CVS. Alan __ Alan W. Irwin Astronomical research affiliation

Re: [CMake] One item from a list?

2007-05-24 Thread Alan W. Irwin
On 2007-05-24 11:56-0600 [EMAIL PROTECTED] wrote: Alan W. Irwin [EMAIL PROTECTED] wrote on 05/23/2007 02:46:10 PM: # On 2007-05-23 14:39-0600 [EMAIL PROTECTED] wrote: # # # Forgive me if this is a dumb n00b question, but is there a way to # retrieve a single item from a list in CMake? I

Re: [CMake] [Dev] CMake 2.5-20070519 and tool chain support

2007-05-28 Thread Alan W. Irwin
example of the issue of different behaviour for -D options depending on whether the type is specified or not. Personally, I think the solution is to assign a default type if none is specified with the -D command. ON or OFF gets BOOL everything else is STRING. Alan __ Alan W

RE: [CMake] [Dev] CMake 2.5-20070519 and tool chain support

2007-05-28 Thread Alan W. Irwin
one of the few weakness of CMake compared to autotools. (The only other one I can think of at this time is Fortran.) Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca

Re: [CMake] Possible bug in cmake version 2.4-patch 6 with macro argument testing

2007-05-28 Thread Alan W. Irwin
real CMake experts to chime in here about the interpretation of macro parameters. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS

RE: [CMake] Possible bug in cmake version 2.4-patch 6 with macro argument testing

2007-05-28 Thread Alan W. Irwin
falling into the same trap. Maybe you are right. Time for the experts to chime in on this. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations

Re: [CMake] Generating files during building

2007-05-31 Thread Alan W. Irwin
will have. The source file is generated after the first phase of the building process: Is this really necessary? For example, could you run EXECUTE_PROCESS (which runs at cmake time) to execute your splitter to generate all the source files? Alan __ Alan W. Irwin

Re: [CMake] Generating files during building

2007-05-31 Thread Alan W. Irwin
the source files get built before they need to be compiled. In any case, I do not think multiple invocations of cmake will be necessary in order to use generated source files. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy

Re: [CMake] Generating files during building

2007-05-31 Thread Alan W. Irwin
On 2007-05-31 15:30-0400 Alexander Neundorf wrote: On Thursday 31 May 2007 15:16, Alan W. Irwin wrote: Hi Gustavo: ... I am not sure the following is necessary if the source files are built in the same directory where they are needed, but for the case where source files are built

Re: [CMake] Porting autoconf checks to cmake

2007-06-03 Thread Alan W. Irwin
done that :-) See http://plplot.svn.sourceforge.net/viewvc/plplot/trunk/cmake/modules/TestSignalType.cmake?view=log and http://plplot.svn.sourceforge.net/viewvc/plplot/trunk/cmake/modules/TestSignalType.c?view=log. Alan __ Alan W. Irwin Astronomical research

Re: [CMake] where is the INSTALL command ?

2007-06-06 Thread Alan W. Irwin
to move on to a more recent Linux distro this summer, and I am sure many of your friends will be doing that as well on a similar time scale for the same reasons. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University

Re: [CMake] CMake 2.4.7 RC 10

2007-06-06 Thread Alan W. Irwin
. So it appears this is a bug in cmake-2.4.7-RC-10 where an incorrect attempt is made to parse ${} constructs when @ONLY is specified. Once this issue is fixed, I would be willing to try another test. Alan __ Alan W. Irwin Astronomical research affiliation with Department

Re: [CMake] Is CMake powerful enough?

2007-06-07 Thread Alan W. Irwin
should be familiar with before you make a decision. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation

Re: [CMake] Creating static executables

2007-06-08 Thread Alan W. Irwin
that -static option is being used. My guess is it would just be the compile stage and not the link stage. I suggest you try the LINK_FLAGS property of SET_TARGET_PROPERTIES, instead. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics

Re: [CMake] Creating static executables

2007-06-08 Thread Alan W. Irwin
and make results) of that example so we can figure out where you are going wrong. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation

Re: [CMake] Creating static executables

2007-06-09 Thread Alan W. Irwin
builds are really fundamental. Therefore, for the reputation of CMake, I hope a CMake developer will be able to fix bug 5087 before 2.4.7. This should not take much time since it looks like Nikita has pinpointed where the error occurs in his bug report. Alan __ Alan W

Re: [CMake] Generating dynamic libraries

2007-06-12 Thread Alan W. Irwin
... thx, You can generate a shared library with ADD_LIBRARY. See the ADD_LIBRARY documentation at http://cmake.org/HTML/Documentation.html. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria

Re: [CMake] Documentation strategy

2007-06-20 Thread Alan W. Irwin
into anything you like (see http://www.xmlmind.com/aptconvert.html). I bet somebody has already made a rough Wiki to APT converter (which is all you would need), but I have not found it yet. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics

Re: [CMake] Documentation strategy

2007-06-20 Thread Alan W. Irwin
On 2007-06-20 20:33-0400 Brandon Van Every wrote: On 6/20/07, Alan W. Irwin [EMAIL PROTECTED] wrote: the subversion book (freely downloadable from http://svnbook.red-bean.com/ in a number of editions and translations) is a huge lifesaver, and I think it is one of the fundamental reasons why

Re: [CMake] Auto-convert all IDL files in a tree?

2007-06-23 Thread Alan W. Irwin
the list of static dependencies that are paid attention to in the Makefile, but that takes human understanding of when the include statements have changed so the procedure is subject to human error but may be a compromise that reasonably satisfies your needs. Alan __ Alan W

Re: [CMake] Auto-convert all IDL files in a tree?

2007-06-23 Thread Alan W. Irwin
. That is certainly a safe procedure, but you will have to be the judge of whether it is acceptably efficient or not. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca

Re: [CMake] relinking

2007-06-27 Thread Alan W. Irwin
__ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot scientific plotting software package

Re: [CMake] custom target (kernel modules)

2007-06-28 Thread Alan W. Irwin
necessary, like any other target add_library(), add_executable(), etc. ? Use ADD_CUSTOM_COMMAND instead with an empty (COMMANDless) ADD_CUSTOM_TARGET with the ALL parameter that-file depends on the custom command. Alan __ Alan W. Irwin Astronomical research affiliation

Re: [CMake] Getting an RPath set in a Library

2007-06-28 Thread Alan W. Irwin
believe INSTALL_NAME_DIR is what you want for Mac OS X. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state

Re: [CMake] custom target (kernel modules)

2007-06-28 Thread Alan W. Irwin
On 2007-06-29 09:04+0800 Clark J. Wang wrote: On 6/28/07, Alan W. Irwin [EMAIL PROTECTED] wrote: On 2007-06-28 10:08-0400 Alexandru Ciobanu wrote: If I use the ALL parameter in add_custom_target() it will always rebuild it, even if none of source files has changes

Re: [CMake] Best practice for package using PKG-CONFIG

2007-06-30 Thread Alan W. Irwin
discussed. I think such a deprecation message guiding the user toward FindPkgConfig.cmake is worthwhile given the above problems with UsePkgConfig.cmake. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria

Re: [CMake] Getting an RPath set in a Library

2007-06-30 Thread Alan W. Irwin
__ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot scientific

Re: [CMake] Ada language support

2007-07-02 Thread Alan W. Irwin
as a comprehensive check of the Ada bindings. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors

Re: [CMake] cmake install - problem at copy

2007-07-09 Thread Alan W. Irwin
install? If so, then you need to set LD_LIBRARY_PATH to the non-standard library directory in order for your executables to find the libraries at run time. If LD_LIBRARY_PATH doesn't work try ldd -r to help diagnose the problem. Alan __ Alan W. Irwin Astronomical research

Re: [CMake] Bugs in cmake-2.4.6, please solve for 2.4.7

2007-07-09 Thread Alan W. Irwin
/pkgconfig. I am not aware of the reason for this Debian policy decision or whether the policcy has been updated for more recent versions of Debian/Ubuntu. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria

Re: [CMake] gcc34 compiler and static executable

2007-07-09 Thread Alan W. Irwin
platforms. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net

Re: [CMake] Location of cmake stuff files

2007-07-12 Thread Alan W. Irwin
use an out-of-source build tree (see discussion in http://www.cmake.org/Wiki/CMake_FAQ) so my source tree remains pristine. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca

Re: [CMake] Copying Required Runtime Libraris (MSVC 2003)

2007-07-12 Thread Alan W. Irwin
. In contrast, using a browser to search through html results would be painful. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation

Re: [CMake] Copying Required Runtime Libraris (MSVC 2003)

2007-07-12 Thread Alan W. Irwin
On 2007-07-12 13:39-0400 Brandon Van Every wrote: On 7/12/07, Alan W. Irwin [EMAIL PROTECTED] wrote: In contrast, using a browser to search through html results would be painful. Do you mean it would be painful under some new regime with multiple html files? When there's a single html file

Re: [CMake] Hard to find the sources of cmake

2007-07-15 Thread Alan W. Irwin
in such an explanatory sentence on the install and download websites? There should be no reason for users such as Manuel to be confused about where to get the Linux source. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University

Re: [CMake] Hard to find the sources of cmake

2007-07-15 Thread Alan W. Irwin
of the various forms Unix takes. See my other post for a suggestion about how to do it. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS

Re: [CMake] Re: 'make dist' like target

2007-07-15 Thread Alan W. Irwin
going to run to many hundreds of lines. Having a CPACK_SOURCE_SELECT_FILES facility implemented as explained above would very much shorten this list. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria

Re: [CMake] Re: 'make dist' like target

2007-07-15 Thread Alan W. Irwin
On 2007-07-15 19:05+0200 Hendrik Sattler wrote: Am Sonntag 15 Juli 2007 18:53 schrieb Alan W. Irwin: Ideally, what I would like is CPACK_SOURCE_SELECT_FILES (or whatever you want to call it) takes precedence over CPACK_SOURCE_IGNORE_FILES, but if a part of the source tree is mentioned

Re: [CMake] ADA language

2007-07-18 Thread Alan W. Irwin
not sure what issue you are referring to here, but I encourage you to try the above Ada-related files to see whether they have the same issue. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria

RE: [CMake] ADA language

2007-07-18 Thread Alan W. Irwin
want to do an out of source build. Actually not. The build of an Ada interface to PLplot and the build of corresponding Ada plotting examples Works for me all the time with an out-of-source build. Alan __ Alan W. Irwin Astronomical research affiliation with Department

RE: [CMake] ADA language

2007-07-18 Thread Alan W. Irwin
(only) case. If/when you figure out how my modules should be changed for either/both the MinGW cases, I would be happy to update them. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria

RE: [CMake] ADA language

2007-07-18 Thread Alan W. Irwin
. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot

Re: [CMake] how to use CMAKE_INCLUDE_PATH and CMAKE_LIBRARY_PATH?

2007-07-18 Thread Alan W. Irwin
-full command. For a summary of useful CMake variables look at http://www.cmake.org/Wiki/CMake_Useful_Variables. HTH Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming

RE: [CMake] ADA language

2007-07-19 Thread Alan W. Irwin
easier, invoke make as make VERBOSE=1 ... which is how I know that CMAKE_Ada_COMPILER is set correctly for Linux and Mac OS X systems using the PLplot Ada modules. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University

[CMake] CMake memory exhaustion

2007-07-19 Thread Alan W. Irwin
low. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot

Re: [CMake] CMake memory exhaustion

2007-07-19 Thread Alan W. Irwin
On 2007-07-19 14:58-0400 Bill Hoffman wrote: Alan W. Irwin wrote: The (truncated) error message I am getting is as follows: make package_source Run CPack packaging tool for source... /home/software/cmake/install/bin/cpack --config /home/irwin/cdburn1/interior_eos /SFHEAD/build_dir

Re: [CMake] CMake memory exhaustion

2007-07-19 Thread Alan W. Irwin
. Is this a no-brainer change that will be done immediately or should I file a formal bug report about the values of YYMAXDEPTH and YYINITDEPTH that are not generous enough in 2.4.7? Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy

[CMake] 2.4.7 does not preserve symbolic links in the source distribution tarball

2007-07-19 Thread Alan W. Irwin
for older versions of CMake since I have never before had symlinks in the source tree to contend with. If somebody can come up with a quick fix, I would be glad to test it out. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy

Re: [CMake] Why can't I change bug #4912 ?

2007-07-20 Thread Alan W. Irwin
is unreasonable. I think raising it to something reasonable (such as ~10 comments per day on bugs you don't own) would discourage spammers without impacting your legitimate users. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics

RE: [CMake] ADA language

2007-07-23 Thread Alan W. Irwin
to the PLplot case as possible. That includes (see above) trying to get everything to work on a Linux platform. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations

Re: [CMake] Visual Studio folders

2007-07-24 Thread Alan W. Irwin
it will also make a folder on windows at cmake time. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation

RE: [CMake] ADA language

2007-07-25 Thread Alan W. Irwin
, look at all the LINK_FLAGS that we set up in http://plplot.svn.sourceforge.net/viewvc/plplot/trunk/examples/ada/CMakeLists.txt?view=markup to get the out-of-source builds to work. Are you using those flags when you do your own out-of-source builds? Alan __ Alan W. Irwin

Re: [CMake] Call for Module maintainer volunteers

2007-07-26 Thread Alan W. Irwin
On 2007-07-26 12:32-0400 Brandon Van Every wrote: On 7/26/07, Alan W. Irwin [EMAIL PROTECTED] wrote: So it really boils down to this. If the developers from KitWare are serious about getting widespread testing of modules before they are made part of an official CMake release

Re: [CMake] Call for Module maintainer volunteers

2007-07-26 Thread Alan W. Irwin
On 2007-07-26 18:35-0400 Brandon Van Every wrote: On 7/26/07, Alan W. Irwin [EMAIL PROTECTED] wrote: On 2007-07-26 13:55-0400 Brandon Van Every wrote: I think it is very important that any experimental releases have no effect on official CMake installations at all. That's already been

Re: [CMake] Call for Module maintainer volunteers

2007-07-26 Thread Alan W. Irwin
__ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot scientific plotting software package

Re: [CMake] Call for Module maintainer volunteers

2007-07-26 Thread Alan W. Irwin
that the rate of module fixes actually getting into the official release is way below what it should be, and I believe the solution to this problem is separate module releases for testing purposes. Alan __ Alan W. Irwin Astronomical research affiliation with Department

Re: [CMake] Call for Module maintainer volunteers

2007-07-25 Thread Alan W. Irwin
On 2007-07-25 14:46-0400 Brandon Van Every wrote: On 7/25/07, Alan W. Irwin [EMAIL PROTECTED] wrote: CMAKE_MODULE_MINIMUM_REQUIRED(VERSION 1.1.0 FATAL_ERROR) Having 1 CMake version number that everyone cares about, and 1 CMake Module version number that everyone cares about, will simply

Re: [CMake] Call for Module maintainer volunteers

2007-07-27 Thread Alan W. Irwin
to your posts on this matter no matter how provocative. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation

Re: [CMake] Setting the compiler

2007-07-27 Thread Alan W. Irwin
) which by default gives proper language support for C and C++. Alternatively, if you want non-default languages supported then use, e.g., Project(test C Fortran) Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University

Re: [CMake] 2.4.7 does not preserve symbolic links in the source distribution tarball

2007-07-28 Thread Alan W. Irwin
On 2007-07-19 16:14-0700 Alan W. Irwin wrote: I have some relatively large data directories in my source tree which tend to be symlinked four different ways in the source tree to save disk space. However, the source distribution tarball generated by make package_source is essentially 5 times

Re: [CMake] ExternalProject and redundant update/configure/compile actions.

2013-09-16 Thread Alan W. Irwin
be worth trying CMake-2.8.12 as a first step whenever annoying dependency issues are discovered for the ExternalProject module for prior CMake versions. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria

[CMake] How to set execute permissions on a CMake-configured file at cmake time?

2013-10-18 Thread Alan W. Irwin
use execute_process with COMMAND set to chmod for Unix platforms that support chmod and permissions, but that is a bit messy, and I would prefer a pure CMake approach for setting permissions of configured files at cmake time if one is available. Alan __ Alan W. Irwin

Re: [CMake] Combinatorial validation with cmake

2013-11-04 Thread Alan W. Irwin
, then under bash on Linux or bash.exe on MSYS/Windows, the following should work: ncount=1000 for count in $(seq $ncount); do echo executing ctest for count = $count out of $ncount ctest done Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics

<    3   4   5   6   7   8   9   10   11   12   >