[CMake] Embarcadero C++ nightly test

2012-02-22 Thread H Xu

Hello,

In this ticket http://www.cmake.org/Bug/view.php?id=12604#c27908, it 
says we'd like someone who has this compiler (Embarcadero C++) to run a 
nightly dashboard submission so we can keep it working. Otherwise it 
will not be officially supported. But why do not the official nightly 
testing machine do this?


The compiler could be downloaded from here: 
http://www.embarcadero.com/products/cbuilder/downloads


Although it says the trial is a 30-day trial, in fact, the command line 
tool of the downloaded package, as far as I know, could be run for 
unlimited time without paying any money.So why not test it officially?


Thanks!

Hong


--

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] make install files

2011-12-06 Thread H Xu

Hello,

In cmake, install command is used to indicate the files that need to be 
installed, and install(DIRECTORY ...) could be used to install 
directories. However, I can't find a way to install files in a directory 
EXCEPT a few files that I do not want to install. Is it possible to do this?


Thanks!

Hong
--

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] make install files

2011-12-06 Thread H Xu

On 2011/12/6 20:43, Eric Noulard wrote:

2011/12/6 H Xuxusu...@gmail.com:

Hello,

In cmake, install command is used to indicate the files that need to be
installed, and install(DIRECTORY ...) could be used to install directories.
However, I can't find a way to install files in a directory EXCEPT a few
files that I do not want to install. Is it possible to do this?


May be using the PATTERN option + EXCLUDE

see the doc from
install(DIRECTORY dirs... DESTINATIONdir
  [FILE_PERMISSIONS permissions...]
  [DIRECTORY_PERMISSIONS permissions...]
  [USE_SOURCE_PERMISSIONS] [OPTIONAL]
  [CONFIGURATIONS [Debug|Release|...]]
  [COMPONENTcomponent] [FILES_MATCHING]
  [[PATTERNpattern  | REGEXregex]
   [EXCLUDE] [PERMISSIONS permissions...]] [...])

http://www.cmake.org/cmake/help/cmake-2-8-docs.html#command:install



Thanks.

--

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