[cmake-developers] Instructions for regenerating CMake flex files?

2010-11-01 Thread Hickel, Kelly
Hi, I'm looking at porting CMake to z/OS and it seems as though I have a need to regenerate all flex/yacc/bison generated files because the system's character set is EBCDIC. I've been googling a lot and haven't been able to find any information on how to do this, the bootstrap command

Re: [cmake-developers] Instructions for regenerating CMake flex files?

2010-11-01 Thread Hickel, Kelly
? -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/01/2010 04:07 PM, Hickel, Kelly wrote: Hi, I'm looking at porting CMake to z/OS and it seems as though I have a need to regenerate all flex/yacc/bison generated files because the system's character set is EBCDIC. I've been

Re: [CMake] several questions about cmake

2010-08-26 Thread Hickel, Kelly
-Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Mike McQuaid Sent: Thursday, August 26, 2010 1:12 AM To: Mark Roden Cc: cmake@cmake.org Subject: Re: [CMake] several questions about cmake On 26 August 2010 01:34, Mark Roden

Re: [CMake] Adding Additional Changes to Cmake's clean target

2010-07-30 Thread Hickel, Kelly
For removing files, you can use ADDITIONAL_MAKE_CLEAN_FILES: From http://www.vtk.org/Wiki/CMake_FAQ: Running make clean does not remove custom command outputs. Why? In CMake 2.2 and higher custom command outputs should be removed by make clean. Make sure you are using at least this version.

[CMake] recpie for doing an install before tests?

2010-07-28 Thread Hickel, Kelly
Hi all, I have some tests that require running a CPack install before they can be run. I'm sure I can figure out a way to do this, but just wondered if there was any common recipe out there for doing it? My google-fu and CMake wiki search didn't turn up anything obvious. Thanks, Kelly

[CMake] Info / advise on getting CMake running on Open VMS?

2010-07-26 Thread Hickel, Kelly
It seems that a few people have attempted to get CMake going on VMS over the years, and there are some VMS specific files in the source tar file, but OpenVMS isn't on the supported list, and is called out on the ToDo Wiki as unsupported. Is there anything I should know, any tips anyone can

Re: [CMake] how to set ar/ranlib flags per target - Solved

2010-07-23 Thread Hickel, Kelly
found better ways to do the things I was using it for. So, my setup is cleaner now, thanks. Kelly Hickel -Original Message- From: Michael Wild [mailto:them...@gmail.com] Sent: Friday, July 23, 2010 1:29 AM To: Hickel, Kelly Cc: CMake List Subject: Re: [CMake] how to set ar

Re: [CMake] how to set ar/ranlib flags per target

2010-07-22 Thread Hickel, Kelly
into the right place in the ar command. Thanks, Kelly Hickel -Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Hickel, Kelly Sent: Wednesday, July 21, 2010 3:46 PM To: Verweij, Arjen; cmake@cmake.org Subject: Re: [CMake] how to set ar/ranlib

Re: [CMake] how to set ar/ranlib flags per target

2010-07-22 Thread Hickel, Kelly
: Hickel, Kelly [mailto:kelly_hic...@bmc.com] Sent: donderdag 22 juli 2010 13:46 To: Hickel, Kelly; Verweij, Arjen; cmake@cmake.org Subject: RE: how to set ar/ranlib flags per target Arjen, I saw your response about wrapping add_library on the list, but for some reason it didn't get to my inbox

Re: [CMake] how to set ar/ranlib flags per target - Solved

2010-07-22 Thread Hickel, Kelly
...@cmake.org] On Behalf Of Hickel, Kelly Sent: Thursday, July 22, 2010 10:35 AM To: Verweij, Arjen; cmake@cmake.org Subject: Re: [CMake] how to set ar/ranlib flags per target -Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Verweij

[CMake] how to set ar/ranlib flags per target

2010-07-21 Thread Hickel, Kelly
Hello, I'm using CMake 2.8.1, and have a problem on AIX similar to this one: http://web.archiveorange.com/archive/v/5y7PkUbT6iizO31eshQa . I have the additional complication of needing to build both 32 and 64 bit libraries from the same set of CMake files. I've tried a number of things (list

Re: [CMake] how to set ar/ranlib flags per target

2010-07-21 Thread Hickel, Kelly
-boun...@cmake.org] On Behalf Of Hickel, Kelly Sent: woensdag 21 juli 2010 21:00 To: cmake@cmake.org Subject: [CMake] how to set ar/ranlib flags per target Hello, I'm using CMake 2.8.1, and have a problem on AIX similar to this one: http://web.archiveorange.com/archive/v

[CMake] Best way to write add_test that depends on shared objects

2010-06-11 Thread Hickel, Kelly
I'm using CMake 2.8.1 and I want to write a simple test for one of the executable targets, but it failes because the shared libraries aren't in the directory or on the path. So, with something like the below, where bar and baz are shared objects built by CMakeLists.txt files in other

Re: [CMake] Best way to write add_test that depends on shared objects

2010-06-11 Thread Hickel, Kelly
-Original Message- From: Michael Wild [mailto:them...@gmail.com] Sent: Friday, June 11, 2010 10:06 AM To: Hickel, Kelly Cc: cmake@cmake.org Subject: Re: [CMake] Best way to write add_test that depends on shared objects On 11. Jun, 2010, at 16:58 , Hickel, Kelly wrote: I'm

[CMake] How can I set different include_directories values for multiple C targets in a single CMakeLists.txt file?

2010-06-01 Thread Hickel, Kelly
I'm trying to build two different versions of a library from a single CMakeLists.txt file (akin to what the FAQ section 7.1 spells out for building shared and static libraries). However, the include_directories command doesn't accept a target the way that, for instance, target_link_libraries