[cmake-developers] [CMake 0014449]: If there are too many files to compile, add_jar hangs

2013-10-01 Thread Mantis Bug Tracker

The following issue has been SUBMITTED. 
== 
http://public.kitware.com/Bug/view.php?id=14449 
== 
Reported By:ycollet
Assigned To:
== 
Project:CMake
Issue ID:   14449
Category:   Modules
Reproducibility:always
Severity:   major
Priority:   normal
Status: new
== 
Date Submitted: 2013-10-01 03:58 EDT
Last Modified:  2013-10-01 03:58 EDT
== 
Summary:If there are too many files to compile, add_jar
hangs
Description: 
If there are too many files to compile, add_jar (from UseJava.cmake) hangs
because the java command line is too long.

Here is the error message:


d:/MyProject/GIT/Artelys/Source_Viz/Visualization2/src/com/artelys/visualization/xml/XmlWriter.java'
trop longue
Stop.
NMAKE : fatal error U1077: 'C:\Program Files (x86)\Microsoft Visual Studio
9.0\VC\BIN\nmake.exe' : code retour '0x2'
Stop.
NMAKE : fatal error U1077: 'C:\Program Files (x86)\Microsoft Visual Studio
9.0\VC\BIN\nmake.exe' : code retour '0x2'
Stop.

== 

Issue History 
Date ModifiedUsername   FieldChange   
== 
2013-10-01 03:58 ycolletNew Issue
==

--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers

[cmake-developers] /usr/bin/ld and /usr/local/bin/ld problems

2013-10-01 Thread outro pessoa
http://mail.kde.org/pipermail/kde-freebsd/2013-September/016064.html
--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers

Re: [cmake-developers] /usr/bin/ld and /usr/local/bin/ld problems

2013-10-01 Thread Rolf Eike Beer

outro pessoa wrote:

http://mail.kde.org/pipermail/kde-freebsd/2013-September/016064.html


I don't see how your topic and the link are related. The link shows that 
the raptor includes are not installed or not found, which is an error 
that traverso should catch in it's CMakeLists.txt.


Eike
--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


Re: [cmake-developers] Perforce patch for CTest 2.8

2013-10-01 Thread Brad King
On 09/30/2013 08:36 PM, Pedro Navarro wrote:
 I've written a patch to add Perforce support for CTest 2.8. Although it still 
 needs a little bit more work (I need to look into what I'm supposed to do 
 with Nightly builds ) it properly notifies CTest of all details about check 
 ins, revision numbers, authors and their E-Mail address (by matching
 them to the P4 database), local changes, etc...

Great, thanks for working on this.

 What's the proper process to submit this?

Please use git format-patch -M origin/master.. to produce
a patch series and post it here.

 What documentation needs to be written (I've added some useful
 CMake variables like P4_CLIENT or P4_OPTIONS for example)?

Unfortunately we currently have no place for builtin CTest
variable documentation:

 http://www.cmake.org/Bug/view.php?id=14246

We do have plans to add one but don't wait for that to contribute.
Just put the documentation in comments next to where the variables
are used so we can port it when we sweep through to collect CTest
variable documentation later.

Thanks,
-Brad
--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


Re: [cmake-developers] Support for coverage.py coverage on the topic stage

2013-10-01 Thread Bill Hoffman

On 10/1/2013 9:44 AM, Patrick Reynolds wrote:

There is definitely a use case in which we want to aggregate coverage
between C++, Python, and Javascript in a web application.

By the way, sorry for the warning on the nightlies. That's fixed in next.

Right, so the change needs to be in ProcessHandler.   Maybe something as 
simple as skipping the last part of the function if ONLY bullseye has run.


-Bill

--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


[cmake-developers] [CMake 0014450]: CMAKE_INSTALL_PREFIX scope

2013-10-01 Thread Mantis Bug Tracker

The following issue has been SUBMITTED. 
== 
http://www.cmake.org/Bug/view.php?id=14450 
== 
Reported By:georgeg
Assigned To:
== 
Project:CMake
Issue ID:   14450
Category:   CMake
Reproducibility:always
Severity:   major
Priority:   high
Status: new
== 
Date Submitted: 2013-10-01 10:55 EDT
Last Modified:  2013-10-01 10:55 EDT
== 
Summary:CMAKE_INSTALL_PREFIX scope
Description: 
The goal is that to install subdirectory in a custom path (usualy a child of the
top directory install path)
the top directory has no sources by itself but is only a container for the
subdirectories (the root of a project with other subprojects)

running make install in top directory will not obey the CMAKE_INSTALL_PREFIX
that we set in each subdirectory. instead, the default top directory
CMAKE_INSTALL_PREFIX value is used 

Steps to Reproduce: 
create one subdirectory and 2 cmake lists:
CMakeLists.txt:

CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
PROJECT(cmaketest)
ADD_SUBDIRECTORY(1)

1/CMakeLists.txt:

CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
PROJECT(cmaketest1)
SET(CMAKE_INSTALL_PREFIX /tmp/cmaketest/1)
MESSAGE (1: CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX})
INSTALL(FILES 1.h DESTINATION include)


Additional Information: 
note the directory 1 must be created and a demo header file in it: 1.h
== 

Issue History 
Date ModifiedUsername   FieldChange   
== 
2013-10-01 10:55 georgegNew Issue
==

--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers