Re: [CMake] How to set CTEST_BUILD_NAME

2018-12-16 Thread Xavier Besseron
o subscribe/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
; > > > > > -- > > 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 > information on each offering, ple

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

2016-06-08 Thread Xavier Besseron
ch 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 projects at > http://www.ki

Re: [CMake] How to suppress valgrind errors reported by NightlyMemCheck ?

2016-03-20 Thread Xavier Besseron
manual/faq.html#faq.reports > > How may I suppress this error when running ctest -D NightlyMemCheck ? > > Thanks, > Aaron > -- Dr Xavier BESSERON Research associate FSTC, University of Luxembourg Campus Kirchberg, Office E-007 Phone: +352 46 66 44 5418 http://luxdem.uni.lu

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

2016-03-08 Thread Xavier Besseron
l 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 > ===== > > On Mo

Re: [CMake] Support OpenBLAS in FindBLAS module

2016-03-07 Thread Xavier Besseron
urse, 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: +352 46 66 44 5418 http://luxdem.u

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

2016-03-07 Thread Xavier Besseron
ecutable 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
rg/Wiki/CMake_FAQ >> >> > >> >> > Kitware offers various services to support the CMake community. For >> more information on each offering, please visit: >> >> > >> >> > CMake Support: http://cmake.org/cmake/help/support.html >>

Re: [CMake] TARGET_LINK_LIBRARIES with full path libraries

2014-09-18 Thread Xavier Besseron
ious services to support the CMake community. 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.or

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 > backw

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 wrote: > On Tue, Oct 2, 2012 at 4:22 PM, David Cole 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 implied. >> >> > > How would it be

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 corre

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 wrote: > Hi all, > > Replies requested. Short replies

Re: [CMake] Recommended Multilib Build Approach?

2012-07-30 Thread Xavier Besseron
On Mon, Jul 30, 2012 at 9:44 PM, Alexander Neundorf 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=&qu

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 th