On 2009-02-05 17:40-0500 Bill Hoffman wrote:
I have a release candidate (RC 11) for 2.6.3 ready for CMake.
Thanks!
This should be about the last one. At this point I am only going to fix
regressions from previous releases of CMake into 2.6.3, so please try this
release.
Glad to see the
At this url:
http://www.vtk.org/Wiki/CMake_Testing_With_CTest
I found mention of adding a setting for purify and running as part of
nightly tests submitted to a dashboard.
Is it possible, in my CMakeLists.txt to point to purify and have a test
target which runs purify without having to run one o
Excellent, thanks David! I'll build CVS HEAD tomorrow and take it for a test
drive.
On Thu, Feb 5, 2009 at 10:08 AM, David Cole wrote:
> It is only in CVS HEAD of CMake at this point, but you may consider using
> the new function add_external_project (in Modules/AddExternalProject.cmake)
> for
Clinton Stimpson wrote:
Visual Studio is hiding the error from you. You'll get better help if
you find the real error.
There should be a log file in the _CPack_Packages directory.
-Bill
___
CMake mailing list
CMake@cmake.org
http://www.cmake.org
Visual Studio is hiding the error from you. You'll get better help if
you find the real error.
Clint
Dat Chu wrote:
I added
set(CPACK_PACKAGING_INSTALL_PREFIX "MyPrefix")
and now I get
Project : error PRJ0019: A tool returned an error code from
"Performing Post-Build Event..."
Here is the
I have a release candidate (RC 11) for 2.6.3 ready for CMake.
This should be about the last one. At this point I am only going to fix
regressions from previous releases of CMake into 2.6.3, so please try
this release.
Thanks.
The files can be found here:
http://www.cmake.org/files/v2.6/*RC
I added
set(CPACK_PACKAGING_INSTALL_PREFIX "MyPrefix")
and now I get
Project : error PRJ0019: A tool returned an error code from
"Performing Post-Build Event..."
Here is the CPACK related code:
include(InstallRequiredSystemLibraries)
set(CPACK_GENERATOR "NSIS")
set(CPACK_IN
On Thu, Feb 5, 2009 at 3:23 PM, David Cole wrote:
> Why does the output begin with "Setting SLICER home:"
> when apparently, the first thing you do in your main is print "ctest needs:
> CTEST_FULL_OUTPUT" to cout.?
>
Yes, I noticed that, but I though CTest commands are removed from the
output
Andriy Fedorov wrote:
On Thu, Feb 5, 2009 at 2:46 PM, Clinton Stimpson wrote:
You can add this in your ctest script.
SET(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 0)
SET(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 0)
Well, I don't understand why it should be 0, but in any case th
Why does the output begin with "Setting SLICER home:"
when apparently, the first thing you do in your main is print "ctest needs:
CTEST_FULL_OUTPUT" to cout.?
When you run the test in a command prompt, do you see the CTEST_FULL_OUTPUT
first...?
Are you sure the code rebuilt before you submitt
On Thu, Feb 5, 2009 at 2:46 PM, Clinton Stimpson wrote:
> You can add this in your ctest script.
> SET(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 0)
> SET(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 0)
>
Well, I don't understand why it should be 0, but in any case this
doesn't seem to change a
Andriy Fedorov wrote:
Hi,
I am trying to get untruncated console output for a *passing* test on dashboard.
I found that I can do this with this line:
cout << "CTEST_FULL_OUTPUT" << endl;
in the source of my test. This doesn't seem to work -- the output is
still truncated.
My test is here:
ht
Hi,
I am trying to get untruncated console output for a *passing* test on dashboard.
I found that I can do this with this line:
cout << "CTEST_FULL_OUTPUT" << endl;
in the source of my test. This doesn't seem to work -- the output is
still truncated.
My test is here:
http://viewvc.slicer.org/v
I agree with Clint. This belongs in the new cmCPackDragNDropGenerator.
On Thu, Feb 5, 2009 at 1:25 PM, Clinton Stimpson wrote:
>
> cmCPackBundleGenerator has a new base class cmCPackDragNDropGenerator. Can
> we please put this functionality there, and if necessary modify the
> CompressFiles(...)
cmCPackBundleGenerator has a new base class cmCPackDragNDropGenerator.
Can we please put this functionality there, and if necessary modify the
CompressFiles(...) so they both get it (maybe the addition of a couple
virtual functions would help).
The DragNDrop generator supports multiple bundle
Please review the attached patch for inclusion.
It adds support to the bundle generator to add a background image and
.DS_Store for people (like myself/Mozilla/Last.fm) who want CPack to be able
to set a nice background to the Bundle without having to manually convert it.
--
Cheers,
Mike Arthur
Dat Chu wrote:
Hello everyone,
I would like to install my application under C:\Program Files\MyPrefix\MyAppName
I tried using
set(CMAKE_INSTALL_PREFIX "MyPrefix")
but that doesn't work. I can get MyApp to be installed under
C:\Program Files just fine (I guess because that is the default of
CP
Hello everyone,
I would like to install my application under C:\Program Files\MyPrefix\MyAppName
I tried using
set(CMAKE_INSTALL_PREFIX "MyPrefix")
but that doesn't work. I can get MyApp to be installed under
C:\Program Files just fine (I guess because that is the default of
CPACK NSIS generato
It is only in CVS HEAD of CMake at this point, but you may consider using
the new function add_external_project (in Modules/AddExternalProject.cmake)
for this purpose. There is example usage in the CMake source tree at
CMake/Tests/ExternalProject/CMakeLists.txt.
It will eventually be released in a
On Thursday 05 February 2009, Ashutosh Juneja wrote:
> Hi,
>
> I am unable to fetch only directory name from an absolute path in
> CMakeList.txt file.
>
> GET_FILENAME_COMPONENT(c:/path/to/dir dirname NAME) does no produce any
> output.
First the variable, then the path:
GET_FILENAME_COMPONENT(dir
cmake --help-command GET_FILENAME_COMPONENT
You have the variable name and the input reversed. Try this:
GET_FILENAME_COMPONENT(dirname "c:/path/to/dir" NAME)
On Thu, Feb 5, 2009 at 12:38 PM, Ashutosh Juneja
wrote:
> Hi,
>
> I am unable to fetch only directory name from an absolute path in
> CM
Hi,
I am unable to fetch only directory name from an absolute path in
CMakeList.txt file.
GET_FILENAME_COMPONENT(c:/path/to/dir dirname NAME) does no produce any
output.
1. Is it only for files or not directories? or am I doing any mistake?
2. Is it possible to split a path in an list/array? ( l
On Thu, Feb 05, 2009 at 08:19:31AM -0800, Tyler Roscoe wrote:
> On Thu, Feb 05, 2009 at 09:11:10AM -0500, Schrader, Glenn wrote:
> > I'm having some trouble with one of my CMakeLists.txt files. What I want to
> > do is to create a symbolic link to a file in another directory if it
> > doesn't alr
On Thu, Feb 05, 2009 at 09:11:10AM -0500, Schrader, Glenn wrote:
> I'm having some trouble with one of my CMakeLists.txt files. What I want to
> do is to create a symbolic link to a file in another directory if it doesn't
> already exist. The commands that looked to my like they should work are:
Hello,
I have a project with the following structure:
trunk
|-src
|-build_dir1
|-build_dir2
|-another_dir
|-CMakeLists.txt
|-unimportant_file
|-another_unimportant_file
I am configuring CPack to make source packages. The content I'm interested
in packaging is folder src (and all it
I'm having some trouble with one of my CMakeLists.txt files. What I want to do
is to create a symbolic link to a file in another directory if it doesn't
already exist. The commands that looked to my like they should work are:
ADD_CUSTOM_TARGET(run echo "run a test")
ADD_CUSTOM_COMMAND(OUTPUT myL
On Thu, Feb 5, 2009 at 4:16 AM, ankit jain wrote:
> Hi,
> Actually iam linking an excutable to the libraries which is not in the
> curretn project meanas they are in other folder outside it.
>
> i am linking it using target link libraries by giving the entire path of
> the libraries but still it
> Hello
>
> I have one cmakelists in which I do the following :
> set(CMAKE_MFC_FLAG 2)
>
>
>
> In the same cmakelists I am using add_subdirectory to add another
> project ,
> and this makes my added directory with sub_directory to have
> set CMAKE_MFC_FLAG too ,which is not the behaviour I wa
Hi,
Actually iam linking an excutable to the libraries which is not in the
curretn project meanas they are in other folder outside it.
i am linking it using target link libraries by giving the entire path of the
libraries but still it shows error .
if I am missing something please tell me what el
29 matches
Mail list logo