Hello,
Does someone know about any initiative to add IAR WorkBench IDE to the list of
supported generators. I cannot find a Mantis issue about that.
This would not be a Makefile based generator but a native one like XCode or
VisualStudio.
Regards,
Gregoire
--
Powered by www.kitware.com
Plea
Hello,
I use astyle in my projects but it is not related to build (not a target). I
have a cmake script that I launch using "cmake -P" so I don't have to write too
much .bat or .sh scripts.
This script has the following options (using -D command line parameters):
- folder where to recur
Hello Bogdan,
I know there is a valgrind plugin for Jenkins but I do not know if it
integrates well with CTest outputs.
https://wiki.jenkins-ci.org/display/JENKINS/Valgrind+Plugin
Regards,
Gregoire
-Original Message-
From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Beh
Perfect, thanks.
Gregoire
-Original Message-
From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of
Matthew Woehlke
Sent: lundi 21 octobre 2013 21:17
To: cmake@cmake.org
Subject: Re: [CMake] CMake 3.0?
On 2013-10-21 04:12, Gregoire Aujay wrote:
> I have seen t
Hello,
I have seen that CMake 2.8.13 has been removed from the Mantis Roadmap. Instead
there is a new 3.0 version
Can you tell us more about it?
Does that mean that we are to expect great new stuff ?
I guess it will break backward compatibility since you change major, what is
going to be broken
Hello,
Since I upgraded to CMake 2.8.12 I have this message for some of my
configure_file generated sources:
ninja: warning: multiple rules generate
_cmakeRelease\tests\GeneratedSources\versioninfo.rc. builds involving this
target will not be correct; continuing anyway
Any idea how I could f
, another one for release) with multi-conf generators.
Regards,
Gregoire
From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of
Gregoire Aujay
Sent: lundi 7 janvier 2013 18:57
To: cmake@cmake.org
Subject: [CMake] install(EXPORT ...) behavior for multi-configuration
Hello,
The maintener of Jenkins' xUnit plugin has added the support of CTest xml
output format.
It uses rpavlik xslt file to transform CTest xml format to JUnit's.
https://wiki.jenkins-ci.org/display/JENKINS/xUnit+Plugin
https://github.com/rpavlik/jenkins-ctest-plugin
Regards,
Gregoire
--
Pow
Hello,
Ok tell me if I am wrong but what you're saying is that it is possible to
enable a pass-thru mode for cmake --build but currently it is not implementer?
Meanwhile I finally found a workaround using the "build_command" Command that I
did not see before:
http://www.cmake.org/cmake/help/v2
Hello,
I am still trying to find a solution to get those colors displayed. Especially
when I read that :) http://www.phoronix.com/scan.php?page=news_item&px=MTM2MzI
I came to the conclusion that the only way to do so is to run the native build
tool directly from the command line.
So I thougth o
[mailto:cmake-boun...@cmake.org] On Behalf Of
Gregoire Aujay
Sent: vendredi 3 mai 2013 16:39
To: cmake@cmake.org
Subject: [CMake] "cmake --build ." and colors
Hello,
I am wondering if there is any trick to enable colors when running this command:
cmake --build .
The only way I manage
Hello,
I am wondering if there is any trick to enable colors when running this command:
cmake --build .
The only way I manage to get the colors is to directly use the make program,
e.g.:
mingw32-make all
The issue is that I am trying to use a script that runs cmake to build instead
of the mak
Hello,
I filed a bug for this issue, to prevent cmake from stripping .dll.a files:
http://public.kitware.com/Bug/view.php?id=14123
Regards,
Gregoire
From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of
Gregoire Aujay
Sent: jeudi 25 avril 2013 14:14
To: cmake@cmake.org
]
Sent: jeudi 25 avril 2013 13:30
To: Gregoire Aujay
Subject: Re: [CMake] MINGW and strip .dll.a files
The strip program just removes unused symbols from any object code.
This is Win32/Mingw specific stuff (MSVC have the same stuff but they use their
own object format).
When you compile a DLL
Hello,
I am trying to package a stripped library built with MINGW.
When I activate strip during install or pack, I get link error (unresolved
symbols) when using this library.
When I strip using "-s" option, everything is fine.
The difference is that my .dll.a is smaller when I use CMake strip
Hello,
Are you using cmake with a Makefiles generator on Windows ?
>From my experiments here are my observations:
- Makefiles on Windows: slow
- Visual ide generator : fast
- Makefiles on linux: fast
I found that when there are many targets in a project, cmake has t
Hello,
It seems that the Projetct(name NONE) macro requires the CMAKE_MAKE_PROGRAM to
be defined.
This CMakelists will trigger a CMAKE_MAKE_PROGRAM not found, when trying to
cross-compile with code sourcery toolchain which is using a non-trivial make
program name:
cmake_minimum_required(VERSI
Hello,
I would be interested in the '--' to disable command line argument parsing by
CMake.
Has someone opened an issue on mantis for this one ?
Regards,
Gregoire
-Original Message-
From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of
David Cole
Sent: samedi 3
ug/view.php?id=14014
Regards,
Gregoire
From: J Decker [mailto:d3c...@gmail.com]
Sent: vendredi 15 mars 2013 12:45
To: Gregoire Aujay
Cc: Nick Overdijk; John Drescher; cmake@cmake.org
Subject: Re: [CMake] Build several targets using cmake --build
My ugly macro looks like... Build project macro cre
ssage-
From: Nick Overdijk [mailto:n...@astrant.net]
Sent: jeudi 14 mars 2013 19:10
To: John Drescher
Cc: Gregoire Aujay; cmake@cmake.org
Subject: Re: [CMake] Build several targets using cmake --build
You can only 'cmake' a single-target. If you want to have more targets, create
m
Hello,
I use cmake 2.8.10 on windows.
I would like to build several targets with cmake --build so the
underlying build tool to do parallel jobs.
Currently it only seems to be possible to build one target at a time, using
--target . (http://www.cmake.org/cmake/help/v2.8.10/cmake.html#opt:--bu
Hello,
I am using cmake 2.8.10.2 on windows.
I want a library A to link to a 3rdParty library B. I thought that using
LINK_PRIVATE version of the target_link_libraries function should avoid B to be
in the link interface of A.
But if I export A, B's full path is in IMPORTED_LINK_INTERFACE_LIBRARI
Hello,
I am using CMake 2.8.10.2, on windows.
I am trying to use install(TARGETS ) and install(EXPORT ) both with NMake
makefiles and with the multi-configuration generator Visual studio.
I cannot get the same behavior when I want my binaries to be installed in a
subfolder that depends on the co
http://www.cmake.org/Bug/view.php?id=13643
Fix is included in the issue but I do not know we could easily add a test.
Regards,
Gregoire
-Original Message-
From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of
David Cole
Sent: mercredi 7 novembre 2012 20:41
To: cma
: [CMake] GenerateExportHeader for module library
On Nov 1, 2012, at 8:01 AM, Stephen Kelly wrote:
> Gregoire Aujay wrote:
>
>> Hello,
>>
>> I am doing my tests with visual 2008 and mingw.
>>
>> As far as I understand a module is like a shared library that
endif()
Regards,
Gregoire
-Original Message-
From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of
Stephen Kelly
Sent: vendredi 26 octobre 2012 17:45
To: cmake@cmake.org
Subject: Re: [CMake] GenerateExportHeader for module library
Gregoire Aujay wrote:
>
Hello,
I want to create a module with two symbols exported with visual:
startPlugin
stopPlugin
I wish I could use the convenient GENERATE_EXPORT_HEADER function to do so.
Is there any reason why the GENERATE_EXPORT_HEADER function is disabled for the
MODULE library type ?
Thanks,
Gregoire
--
27 matches
Mail list logo