Re: [cmake-developers] Saving user settings with xcode generator

2011-01-31 Thread Eric Noulard
2011/1/31 David Cole david.c...@kitware.com: When you are logged in to Mantis, there should be a Monitor button right under where you see a link to the patch that you attached... Is there no Monitor button there? (You may already be monitoring it if you attached a patch. I'm pretty sure that

Re: [cmake-developers] CMake dashboard breakage [again]

2011-01-31 Thread Brad King
On 01/31/2011 03:07 AM, Eric Noulard wrote: If not what could be the cause of this problem? CMake 2.6's foreach does not support the IN LISTS syntax: diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index 475e0de..4d4764f 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@

Re: [cmake-developers] CMake dashboard breakage [again]

2011-01-31 Thread Eric Noulard
2011/1/31 Eric Noulard eric.noul...@gmail.com: 2011/1/31 Brad King brad.k...@kitware.com: On 01/31/2011 03:07 AM, Eric Noulard wrote: If not what could be the cause of this problem? CMake 2.6's foreach does not support the IN LISTS syntax: Ok, I see... I'll fix this later today. Just

Re: [cmake-developers] stage push?

2011-01-31 Thread Brad King
Looks like a access right issue. Yeah... this is just a permissions issue because you're trying to push files outside of the Modules directory. I fixed the server's checks to allow any developer to push changes to the stage in any directory (except Source/kwsys/ which is managed by a

[cmake-developers] CMake 2.8.4-rc2 ready for testing!

2011-01-31 Thread David Cole
The CMake 2.8.4 release candidate stream continues! You can find the source and binaries here: http://www.cmake.org/files/v2.8/?C=M;O=D Since we switched to git, and a new workflow, we're expecting to do more frequent releases. Because of that, our release candidate phases will be shorter than

Re: [CMake] CMake without C/C++ tests

2011-01-31 Thread Дима
So, I put the line project (astl NONE) in CmakeLists.txt But it does not work, i got these messages $ cmake -DCMAKE_TOOLCHAIN_FILE=/home/Void/devel/svnroot/trunk/gcc/libstdc++-v3/astl/ToolchainFile.cmake /home/Void/devel/svnroot/trunk/gcc/libstdc++-v3/astl/ -- Configuring done CMake Error:

Re: [CMake] CMake without C/C++ tests

2011-01-31 Thread Yngve Inntjore Levinsen
I was quite sure that you need your project to use at least one language, but that it does not need to be C/C++. If you have issues with the internal test then a special TOOLCHAIN file is the way to go. I had to do this for a special fortran compiler that only built 32bit packages on a 64bit

[CMake] Compiler definitions for shared and static builds

2011-01-31 Thread Louis Hoefler
Hello everyone, I try to generate a cmake project and want to build shared and dynamic libraries in one step. I therefore added two targets: ADD_LIBRARY(${fox_default_libname} STATIC ${fox_cpp_files} ${fox_h_files} icons.h icons.cpp) ADD_LIBRARY(${fox_default_libname} SHARED ${fox_cpp_files}

[CMake] FindTCL.cmake has a problem?

2011-01-31 Thread kent williams
I found this out on a RHEL6 machine, which comes stock with tclsh and wish but without the C header files for development. FindTCL.cmake sets TCL_FOUND, even though TCL_INCLUDE_PATH:PATH=TCL_INCLUDE_PATH-NOTFOUND Imagine the hilarity that ensues! ___

Re: [CMake] Compiler definitions for shared and static builds

2011-01-31 Thread Andreas Pakulat
On 31.01.11 17:18:58, Louis Hoefler wrote: Hello everyone, I try to generate a cmake project and want to build shared and dynamic libraries in one step. I therefore added two targets: ADD_LIBRARY(${fox_default_libname} STATIC ${fox_cpp_files} ${fox_h_files} icons.h icons.cpp)

Re: [CMake] Compiler definitions for shared and static builds

2011-01-31 Thread Eric Noulard
2011/1/31 Andreas Pakulat ap...@gmx.de: On 31.01.11 17:18:58, Louis Hoefler wrote: Hello everyone, I try to generate a cmake project and want to build shared and dynamic libraries in one step. I therefore added two targets: ADD_LIBRARY(${fox_default_libname} STATIC ${fox_cpp_files}

Re: [CMake] link against a library under windows

2011-01-31 Thread Tyler Roscoe
On Mon, Jan 31, 2011 at 08:12:49AM +0100, ycollette.nos...@free.fr wrote: if (MKL_FOUND) set(LINK_PATHS ${LINK_PATHS} ${mkl_solver_PATH}) endif (MKL_FOUND) if (MPI_FOUND) set(LINK_PATHS ${LINK_PATHS} ${MPI_BASE_PATH}/lib) endif (MPI_FOUND) link_directories(${LINK_PATHS}) Don't use

Re: [CMake] Compiler definitions for shared and static builds

2011-01-31 Thread SF Markus Elfring
I try to generate a cmake project and want to build shared and dynamic libraries in one step. Do you know answers from a wiki? http://cmake.org/Wiki/CMake_FAQ#Can_I_build_both_shared_and_static_libraries_with_one_ADD_LIBRARY_command.3F Regards, Markus

[CMake] CMake 2.8.4-rc2 ready for testing!

2011-01-31 Thread David Cole
The CMake 2.8.4 release candidate stream continues! You can find the source and binaries here: http://www.cmake.org/files/v2.8/?C=M;O=D Since we switched to git, and a new workflow, we're expecting to do more frequent releases. Because of that, our release candidate phases will be shorter than

[CMake] WG: Problems with MinGW + BundleUtilities

2011-01-31 Thread NoRulez
I had sent this email, but it wasn’t forwarded to the mailing list. Maybe the administrator could forward the email, because I had attached a tiny example (RAR archive). Best Regards Von: NoRulez [mailto:noru...@me.com] Gesendet: Freitag, 28. Jänner 2011 17:52 An: 'CMake MailingList'

Re: [CMake] FindTCL.cmake has a problem?

2011-01-31 Thread Clifford Yapp
It's still being developed, but you might try the version in the BRL-CAD subversion repository, cmake branch: svn co https://brlcad.svn.sf.net/svnroot/brlcad/brlcad/branches/cmake/misc/CMake brlcad_cmake I'm trying to get it as bullet-proof as possible, although I'm not sure how well it will do

Re: [CMake] CMake 2.8.4-rc2 ready for testing!

2011-01-31 Thread Dongsheng Song
On 2011-2-1 5:45, David Cole wrote: The CMake 2.8.4 release candidate stream continues! You can find the source and binaries here: http://www.cmake.org/files/v2.8/?C=M;O=D Since we switched to git, and a new workflow, we're expecting to do more frequent releases. Because of that, our release

Re: [CMake] CMake 2.8.4-rc2 ready for testing!

2011-01-31 Thread Dongsheng Song
On 2011-2-1 5:45, David Cole wrote: The CMake 2.8.4 release candidate stream continues! You can find the source and binaries here: http://www.cmake.org/files/v2.8/?C=M;O=D Since we switched to git, and a new workflow, we're expecting to do more frequent releases. Because of that, our release

[Cmake-commits] CMake branch, next, updated. v2.8.3-1532-gb788fd6

2011-01-31 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via b788fd6181d4fadd6fb837c53087dea116ca421f (commit) via

[Cmake-commits] CMake branch, release, updated. v2.8.3-697-g086cd2f

2011-01-31 Thread David Cole
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, release has been updated via 086cd2fa400cbfc1b5700cc3a322a66530ba3b84 (commit) via