Re: [CMake] trigger site error in 2.8.0+

2010-08-24 Thread David Blado
That did the trick - thanks David! From: David Cole [mailto:david.c...@kitware.com] Sent: Tuesday, August 24, 2010 11:10 AM To: David Blado Cc: cmake@cmake.org Subject: Re: [CMake] trigger site error in 2.8.0+ The "trigger" code is only exe

[CMake] trigger site error in 2.8.0+

2010-08-24 Thread David Blado
Hi All, I am (finally) getting around to upgrading to 2.8.x from 2.6.x and noticed that there is a new error message. This does not seem to prevent CDash from receiving the submission but I still wanted to bring it up. I understand that the 'Trigger site' is an old Dart thing and is not requi

[CMake] gcov results not accurate

2009-03-05 Thread David Blado
Hi All, Some colleagues and myself are in the process of wiring in coverage reports through CTest and CDash. We have noticed that the percentage of code covered is not including source files for which no tests exist. The percentage isn't accurate because if our library has 8 source files and o

[CMake] porting to cmake 2.6 from 2.4.6

2008-06-18 Thread David Blado
Hi all, I recently took up the task of porting to 2.6 (again…fell off my plate for a while ☺ ) I’m seeing this when running cmake: CMake Error: Cannot determine link language for target "libraryX". All of the source files listed are cpp files: SET(SRCS fileA ) fileA is really fileA.cpp but I

[CMake] 2.6.0 ADD_DEFINITIONS()

2008-05-06 Thread David Blado
Congratulations to the CMake team for getting this awaited release to the community! I have a quick question regarding preprocessor definitions being escaped automatically. In CMake < 2.4, I would use: ADD_DEFINITIONS(-D_U_=\"__attribute__\(\(used\)\)\") To tell gcc that I wanted to use _U_ in

[CMake] cmake 2.6 cross compilation for WINCE

2008-04-16 Thread David Blado
Hi All, I understand that CMake 2.6 will fully support cross compilation. I assume that this means (with the right toolchain file) that I should be able to build for any Windows CE SDK (Pocket PC, Windows Mobile, Standard CE). If that assumption is correct, my question is whether the generate

RE: [CMake] [2.4.7] - ADD_SUBDIRECTORY unexpected behavior

2007-08-06 Thread David Blado
ll Hoffman [mailto:[EMAIL PROTECTED] Sent: Monday, August 06, 2007 12:20 PM To: David Blado Cc: cmake@cmake.org Subject: Re: [CMake] [2.4.7] - ADD_SUBDIRECTORY unexpected behavior David Blado wrote: > > Hi All, > > After upgrading to cmake/ctest 2.4.7, I started experiencing the

[CMake] [2.4.7] - ADD_SUBDIRECTORY unexpected behavior

2007-08-06 Thread David Blado
Hi All, After upgrading to cmake/ctest 2.4.7, I started experiencing the following problems when running my automated builds using ctest: c:/builds/dds4.2.3/dds/CMakeLists.txt:6: ADD_SUBDIRECTORY not given a binary directory but the given source directory "C:/builds/dds4.2.3/dds/Accounting

[CMake] visual studio 2005 solution folders

2007-06-20 Thread David Blado
Hi, Is there a way in CMake to create solution folders. The VS 2005 IDE allows the nesting of projects inside of solution folders. This is handy for solution files that contain perhaps dozens of projects. Is it possible to do this in CMake?? There has been a bug filed for this @ http://www.vtk

[CMake] linker dependencies

2007-06-20 Thread David Blado
Hi All, I'm guessing this has come up before, but I can't seem to find much from google on it. I've got a shared library(A) that links (statically) against db/db_cxx (Berkeley DB). I have other shared libraries (B, C, D) that link against shard library A. When I run and build w/ CMake, librarie

[CMake] install(script) usage w/ cpack

2007-04-25 Thread David Blado
Hi All, I'm trying to simplify the creation of symlinks so I don't have to reach down into _CPack_Packageslib in order to create symbolic links to libraries. I've attempted the ADD_CUSTOM_COMMAND, ADD_CUSTOM_TARGET, FILE(WRITE) / INSTALL(SCRIPT) methods and none of them seem to work w/

RE: [CMake] set_target_properties : cmLocalVisualStudio6Generator.cxx patch

2007-01-17 Thread David Blado
__ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Blado Sent: Thursday, December 21, 2006 10:19 AM To: cmake@cmake.org Subject: RE: [CMake] set_target_properties questions Hi, So I figured out that CMake puts LINK_FLAGS_DEBUG (and LINK_FLAGS_) in the C/C++ tab in MSVC6

RE: [CMake] set_target_properties questions

2006-12-21 Thread David Blado
EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Blado Sent: Tuesday, December 19, 2006 7:14 PM To: cmake@cmake.org Subject: [CMake] set_target_properties questions Hi, I'm using SET_TARGET_PROPERTIES in the following fashion (MSVC6 generator): SET_TARGET_PROPERTIES(

[CMake] set_target_properties questions

2006-12-19 Thread David Blado
Hi, I'm using SET_TARGET_PROPERTIES in the following fashion (MSVC6 generator): SET_TARGET_PROPERTIES(${LIB_NAME} PROPERTIES LINK_FLAGS "/NODEFAULTLIB:libcmt") I tried to use LINK_FLAGS_DEBUG because I have a need to ignore different libs for different configurations. I get the follo

[CMake] IF(DEFINED) syntax

2006-12-06 Thread David Blado
Hi, I'm trying to setup a cmake system where as cmake will by default be a release build. If someone issues cmake -DCMAKE_BUILD_TYPE:STRING=debug it should overwrite the default to produce a debug build. The only way I've found to do this is with: IF(CMAKE_BUILD_TYPE MATCHES "debug"

RE: RE: Re: [CMake] cpack help

2006-11-14 Thread David Blado
[mailto:[EMAIL PROTECTED] On Behalf Of David Blado Sent: Tuesday, November 14, 2006 11:19 AM To: David Cole Cc: cmake@cmake.org Subject: RE: RE: Re: [CMake] cpack help David, Thanks a bunch for the good info! Let me explain how I've built my hierarchy and what is I'm trying to packa

RE: RE: Re: [CMake] cpack help

2006-11-14 Thread David Blado
rom: David Cole [mailto:[EMAIL PROTECTED] Sent: Monday, November 13, 2006 6:25 PM To: David Blado Cc: cmake@cmake.org Subject: Re: RE: Re: [CMake] cpack help Actually, I'm not sure what the rule is/should be for absolute paths with respect to CPack's packaging. Directory names t

RE: Re: [CMake] cpack help

2006-11-13 Thread David Blado
docs that state that using an absolute path will break CPack.   Any ideas?   Cheers, David       -Original Message- From: David Cole [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 3:16 AM To: David Blado Subject: Re: Re: [CMake] cpack help   Sorry for the false response

[CMake] cpack help

2006-11-09 Thread David Blado
Hi All,   I was hoping that someone here could help me out w/ cpack.  I’ve copied sample CMakeLists cpack section with no success.  Every time I issue make package the package comes out empty.   I do have some INSTALL commands defined and they work perfectly fine when I do ‘make install