[CMake] Packagemaker 3 syntax for flatten package on OSX

2013-02-27 Thread Maik Mann
Good morning, we as little software company are very happy with all the abilities that cmake offers to us. Now we want to develop some end-user applications and want them to be easily packaged with CPack(PackageMaker). But since the the packagemaker generator do not support the packmaker 3 syn

Re: [CMake] Visual Studio and Pure C application

2013-02-27 Thread Rolf Eike Beer
Am 27.02.2013 00:16, schrieb Totte Karlsson: Hi, I have a simple application that is 'pure C', no C++. The problem I have is that the solution/project file that CMake generates creates a target that is not C, but C++. In other words, __cplusplus is defined and in some headers there are #define

Re: [CMake] ctest & git submodules

2013-02-27 Thread Brad King
On 02/27/2013 12:36 AM, NoRulez wrote: > I think for the --tags option it is the same, isn't it? > > How can I set such option for the checkout/update command? The --tags option belongs to "git fetch" and extra flags can be added for that by setting CTEST_GIT_UPDATE_OPTIONS before calling ctest_u

Re: [CMake] MinGW Makefile fails make test

2013-02-27 Thread Donald Robinson
My generation also starts with this: cmake -G "MinGW Makefiles" So I don't know if that is it. The error reference to 'nmake' is confusing, but that could be a (misleading) hardcoded message and not the actual command being passed to the CMD shell. I may try the MSYS option

Re: [CMake] MinGW Makefile fails make test

2013-02-27 Thread Bill Hoffman
On 2/26/2013 8:57 PM, Donald Robinson wrote: This is a repost (and rewording) of an earlier post “Setting CMAKE_BUILD_TOOL or CMAKE_MAKE_PROGRAM with MinGW tools,” which garnered no response. Hopefully this post is clearer: I have Cmake 2.8.8 installed along with MinGW 4.7.2 on Windows XP with n

[CMake] Installing compiled targets

2013-02-27 Thread Robert Dailey
Hello, Right now I have multiple executables and libraries that are built with Visual Studio (as generated by CMake). Suppose I have 4 shared library targets: A, B, C, D And I have two executable targets: EXE1, EXE2 The dependencies for EXE1 are: A, B, C Dependencies for EXE2 are: C, D In

Re: [CMake] Toolchain file: Texas Instrument C6000 Code Generation Tools

2013-02-27 Thread Laszlo Papp
> > Anyone knowing something about this? Issue still not solved. :-) Laszlo -- 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_F

Re: [CMake] cmake and MinGW

2013-02-27 Thread Bill Hoffman
On 2/27/2013 5:28 PM, Donald Robinson wrote: The crux of my problem seems to be having Cmake behave when it is run from a command line in the directory in which CMakeLists.txt is found. When run from a sub-directory, everything works fine. I’ve cleaned and re-run this a few times to make sure the

Re: [CMake] ctest & git submodules

2013-02-27 Thread NoRulez
But if I set the option: set(CTEST_GIT_UPDATE_OPTIONS "--tags") Then I get the following error message: Update command failed: "C:/Program Files/Git/cmd/git.cmd" "fetch" "--tags" Did I miss something? Thanks in advance Best Regards Am 27.02.2013 um 14:01 schrieb Brad King : > On 02/27/2013 12: