Re: [CMake] How to set CTEST_BUILD_NAME

2018-12-16 Thread Xavier Besseron
scribe/unsubscribe: > https://cmake.org/mailman/listinfo/cmake > > > ------- > > This e-mail can not be trusted due to SPF/DKIM validation failed. > > > -

Re: [CMake] CMake equivalent to Boost.Build site-config.jam oruser-config.jam

2017-08-09 Thread Xavier Besseron
9) Doopy doopy doo whatever else > > > > > > > > -- > > Powered by www.kitware.com > > Please keep messages on-topic and check the CMake FAQ at: > http://www.cmake.org/Wiki/CMake_FAQ > > Kitware offers various services to support the CMake community. For more

Re: [cmake-developers] Fw: CTest and Address Sanitizer

2016-12-29 Thread Xavier Besseron
ake.org/cmake/help/training.html > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/cmake-developers > -- Dr Xavier BESSERON Rese

Re: [CMake] Get ctest -S script to pull from git branch other than 'master'?

2016-06-08 Thread Xavier Besseron
ty. For more > information on each offering, please visit: > > CMake Support: http://cmake.org/cmake/help/support.html > CMake Consulting: http://cmake.org/cmake/help/consulting.html > CMake Training Courses: http://cmake.org/cmake/help/training.html > > Visit other Kitware open-source proje

Re: [CMake] how to keep rpath from build to install

2016-03-08 Thread Xavier Besseron
all of what is in the website and if I objdump -x * | > grep -i rpath on the executables in the install directory I get a null > result. > > Thanks, > <>Srinath > > = > Srinath Vadlamani > ===== > &

Re: [CMake] Support OpenBLAS in FindBLAS module

2016-03-07 Thread Xavier Besseron
lementations. Of course, OpenBLAS would still be happy to > provide OpenBlasConfig.cmake (I am guessing) for users of OpenBLAS directly. > > Best Regards, > Rob > -- Dr Xavier BESSERON Research associate FSTC, University of Luxembourg Campus Kirchberg, Office E-007 Phone: +35

Re: [CMake] how to keep rpath from build to install

2016-03-07 Thread Xavier Besseron
n executable the same > when I install that executable using INSTALL(TARGETS )? > > I do set : > > SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) > > = > Srinath Vadlamani > ========= > -- Dr Xavier BESSERON Researc

Re: [CMake] How to pass a configuration file to CMake?

2016-01-21 Thread Xavier Besseron
>> >> > Please keep messages on-topic and check the CMake FAQ at: >> http://www.cmake.org/Wiki/CMake_FAQ >> >> > >> >> > Kitware offers various services to support the CMake community. For >> more information on each offering, please visit:

Re: [CMake] TARGET_LINK_LIBRARIES with full path libraries

2014-09-18 Thread Xavier Besseron
://www.kitware.com/opensource/opensource.html Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/cmake -- Dr Xavier BESSERON Research associate FSTC, University of Luxembourg Campus Kirchberg, Office E-007 Phone: +352 46 66 44 5418 http://luxdem.uni.lu/ -- Powered

Re: [CMake] Need cmake to work on AIX 5.3

2012-10-09 Thread Xavier Besseron
Hi Arindam, Maybe you can try this way: http://www.cmake.org/Wiki/CMake_FAQ#How_do_I_use_a_different_compiler.3F Xavier On Tue, Oct 9, 2012 at 11:58 AM, Arindam Mukherjee arindam.muker...@gmail.com wrote: Hi, I have to get a build of my product on AIX 5.3 (powerpc) because of backward

Re: [CMake] Cross compiling for Windows x64/amd64 on 32-bit Windows

2012-10-02 Thread Xavier Besseron
On Tue, Oct 2, 2012 at 1:09 PM, Arindam Mukherjee arindam.muker...@gmail.com wrote: On Tue, Oct 2, 2012 at 4:22 PM, David Cole david.c...@kitware.com wrote: cmake -G Visual Studio 9 2008 Win32 src_dir will not work. There is no such generator. Leave out the Win32 for this case... it is

Re: [CMake] Cross compiling for Windows x64/amd64 on 32-bit Windows

2012-10-01 Thread Xavier Besseron
Hi, I was able to build win64 executable on my 32-bit Windows. First, I had to make the full installation of VS 2008 (the default installation did not provide the win64 compiler in my case). Then, I had to select the Visual Studio 9 2008 Win64 generator in CMake. And the project built correctly.

Re: [cmake-developers] Patch to support SVN externals in CTest update

2012-09-03 Thread Xavier Besseron
On Fri, Aug 24, 2012 at 5:09 PM, Brad King brad.k...@kitware.com wrote: On 08/24/2012 08:50 AM, Xavier Besseron wrote: I have split my changes in a series of small patches. Please find them in attachment. I have made sure that everything is compiling correctly

Re: [cmake-developers] Patch to support SVN externals in CTest update

2012-08-24 Thread Xavier Besseron
, Xavier Besseron wrote: I am affected by the issue in bug 12630 (http://public.kitware.com/Bug/view.php?id=12630), so I prepared a patch. Thanks for working on this! This patch adds support for svn externals during CTest update. I tested it successfully with svn 1.6/1.7, Linux/Windows

Re: [CMake] Bug fix requests for the *next* release of CMake...

2012-08-23 Thread Xavier Besseron
Sorry for this late reply. http://public.kitware.com/Bug/view.php?id=12630 - Support for SVN externals in CTest update I will resume the discussion about this issue in the mailing list. Xavier On Fri, Aug 10, 2012 at 10:47 PM, David Cole david.c...@kitware.com wrote: Hi all, Replies

[cmake-developers] Patch to support SVN externals in CTest update

2012-07-30 Thread Xavier Besseron
Hello, I am affected by the issue in bug 12630 (http://public.kitware.com/Bug/view.php?id=12630), so I prepared a patch. This patch adds support for svn externals during CTest update. I tested it successfully with svn 1.6/1.7, Linux/Windows and with nested externals as well. Summary of the

Re: [CMake] Recommended Multilib Build Approach?

2012-07-30 Thread Xavier Besseron
Hello Greg, To build i386 binaries on my 64-bit system with multilib, I just do something like this: mkdir build-i386 cd build-i386 CFLAGS=-m32 CXXFLAGS=-m32 LDFLAGS=-melf_i386 cmake ../src/ And to build x86-64 binaries on my 64-bit system, I don't need to specify anything since it is the

Re: [CMake] Recommended Multilib Build Approach?

2012-07-30 Thread Xavier Besseron
On Mon, Jul 30, 2012 at 9:44 PM, Alexander Neundorf a.neundorf-w...@gmx.net wrote: On Monday 30 July 2012, Xavier Besseron wrote: To build i386 binaries on my 64-bit system with multilib, I just do something like this: mkdir build-i386 cd build-i386 CFLAGS=-m32 CXXFLAGS=-m32 LDFLAGS