Re: [CMake] Proposal for changing the visual studio generator

2008-02-21 Thread Joshua Jensen
- Original Message - From: Olivier Tournaire Date: 2/21/2008 3:54 AM I am also very intersted in this change. I usually put all my *.exe in one folder, say bin. For release version, with the name $(ProjectName).exe, and Debug version $(ProjectName)-D.exe. As far as I understand, this

Re: [CMake] RE: Adding Custom Build Types

2008-01-15 Thread Joshua Jensen
*From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *Malhotra, Anupam *Sent:* 15 January 2008 06:37 *To:* cmake@cmake.org *Subject:* [CMake] Adding Custom Build Types Now In my project I don’t want these build types. I want custom build types like MD, MT, MDd, MTd, ML etc (for

Re: [CMake] Re: Migration to subversion

2008-01-04 Thread Joshua Jensen
- Original Message - From: James Mansion Date: 1/4/2008 3:38 PM Gonzalo Garramuño wrote: In summary, once you use git, if you are like me, you'll realize that you've been doing source version control wrong all these years *sigh*. Does git work on Win32? Pretty well, I've found,

Re: [CMake] CMake script vs. Lua

2007-12-14 Thread Joshua Jensen
- Original Message - From: Brandon Van Every Date: 12/14/2007 12:04 PM Certain CMake people want to *say* it was conclusive, so that the issue will go away, but it wasn't conclusive. In particular, I have to note the self-selecting nature of the CMake community. If you stick around and

Re: [CMake] Adding non .cpp or .h file to a visual studio project.

2007-11-02 Thread Joshua Jensen
Philip Lowman wrote: Josef Karthauser wrote: Hi there again, I’m using cmake to create some visual studio projects, and want to include some non-C files (config.txt for instance) into the vcproj file so that my Visual Studio users can edit the file from within the IDE. I can’t add them

Re: [CMake] Excluding a file from a particular configuration with Visual Studio

2007-10-12 Thread Joshua Jensen
Sylvain Benner wrote: What's the canonical way of marking a file as being excluded from a given Visual Studio configuration? No this is not supported. I think it's better to use preprocessor to do this kind of stuff. In my patched version at: svn co svn://svn.luaplus.org/CMake/patches/All

Re: [CMake] How can I avoid the addition of Debug/Release to the link path?

2007-10-09 Thread Joshua Jensen
KSpam wrote: This was an annoyance I had with Visual Studio as well, and I was able to work around it fairly easily. I have CMAKE_CONFIGURATION_TYPES set when I am building in Visual Studio. I expect that this would be similar for Xcode. All I do is prepend ../ to the output name, and I set

Re: [CMake] Supported configurations with Visual Studio builds

2007-10-08 Thread Joshua Jensen
Sylvain Benner wrote: What about the debug/optimized flags for TARGET_LINK_LIBARIES()? Do these work right now by taking advantage of the fact that Debug, Release, MinSizeRel, and RelWithDebInfo are hardcoded? We had to upgrade the cmTarget sources to add the new configuration type and then

[CMake] Jam generator for CMake

2007-09-27 Thread Joshua Jensen
I was wondering if there is a Jamfile generator for CMake for either Perforce Jam or Boost Jam? I'm doing build system experiments, and I'd like to export the CMakeLists.txt contents to alternative build systems. Thanks. Josh ___ CMake mailing list

Re: [CMake] How to get rid of Debug / Release VisualStudio folders?

2007-08-22 Thread Joshua Jensen
Luigi Calori wrote: Probably dumb question, but was not able to found hints on docs: Visual Studio projects generated do append Debug / Release to the EXECUTABLE_OUTPUT_PATH and LIBRARY_OUTPUT_PATH paths. Is there a way to avoid this and force them to generate straight inside

Re: [CMake] Visual Studio generator missing

2007-06-25 Thread Joshua Jensen
Bill Hoffman wrote: Kovarththanan Rajaratnam wrote: To compare things, I've downloaded the Windows version and it seems to list all the Visual Studio generators. Would I have to compile my own version of CMake under Cygwin? If so, do I need to pass special parameters to ensure that the Visual

Re: [CMake] C# support again

2007-06-12 Thread Joshua Jensen
Brandon Van Every wrote: On 6/9/07, Joshua Jensen [EMAIL PROTECTED] wrote: What is Kitware's interest in full Visual Studio C# support in CMake? 10 months ago, Brad King wrote in http://public.kitware.com/pipermail/cmake/2006-August/010528.html is there any development (planned) on C# (Csharp

Re: [CMake] What source control system do you use?

2007-06-09 Thread Joshua Jensen
Brandon Van Every wrote: CMake users: what source control systems are you using? We were using Subversion, but we've migrated to Perforce. Josh ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] C# support again

2007-06-09 Thread Joshua Jensen
Pau Garcia i Quiles wrote: The developers of Qyoto (the C# binding to Qt) have written a FindMono.cmake which might be useful: http://websvn.kde.org/trunk/KDE/kdebindings/cmake/modules/FindMono.cmake This was useful, but I never really made it work well. * ${CMAKE_CURRENT_SOURCE_DIR}/ must be

Re: [CMake] C# support again

2007-06-09 Thread Joshua Jensen
Brandon Van Every wrote: On 6/6/07, Joshua Jensen [EMAIL PROTECTED] wrote: So, for fun, I was trying to implement C# support through some extra .cmake files. It would be good to get a wiki page up about C# issues, so there's some stickiness to various people's efforts. When I apply for game

Re: [CMake] C# support again

2007-06-09 Thread Joshua Jensen
Brandon Van Every wrote: On 6/9/07, Joshua Jensen [EMAIL PROTECTED] wrote: My only concern is maintaining a fork to do this. I already have a forked CMake with various fixes to the Visual Studio and Xcode support. Despite increasing usability in these environments, the interest level in my

[CMake] C# support again

2007-06-06 Thread Joshua Jensen
So, for fun, I was trying to implement C# support through some extra .cmake files. This won't be good enough to work with Visual Studio's MSBuild, but I wanted to give it a start. I ran into an interesting issue. A simple C# command line appears as follows: csc /out:MyApp.exe /target:exe

Re: [CMake] VS project file structure

2007-05-31 Thread Joshua Jensen
Christoph John wrote: I am using cmake to generate visual studio 8.0 makefiles. Currently the sources per project are displayed in two sections in VS in a Header and Source section. Now my question: Can I define a own section structure where the sources should be displayed in and how can I

[CMake] CMake and directory creation

2007-05-29 Thread Joshua Jensen
So, I have an interesting problem when using CMake (latest CVS). I set the EXECUTABLE_OUTPUT_PATH and LIBRARY_OUTPUT_PATH to be the following: SET (LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/image CACHE PATH Output location for LuaPlus libraries) SET (EXECUTABLE_OUTPUT_PATH

[CMake] [BUG] [PATCH] Unable to load project in XCode

2007-05-27 Thread Joshua Jensen
After inserting the following into my CMakeLists.txt: SET_TARGET_PROPERTIES(MyLibrary PROPERTIES BUILD_WITH_INSTALL_RPATH 1 INSTALL_NAME_DIR @executable_path) XCode stopped opening the .xcodeproj. This was due to an unquoted line in project.pbxproj: INSTALL_NAME = @executable_path It

[CMake] wxWidgets AUI library support

2007-05-24 Thread Joshua Jensen
There is a provided simple patch for this attached to the bug at http://www.cmake.org/Bug/bug.php?op=showbugid=4338pos=5. Is there any chance this can find it into the CVS build of CMake? Thanks. Josh ___ CMake mailing list CMake@cmake.org

Re: [CMake] CMake 2.4.2 generates undebuggable .vcproj projects.

2007-05-24 Thread Joshua Jensen
Bill Hoffman wrote: Rob Mathews wrote: To reproduce, take CMake 2.4.1 from CVS and build it. Open the CMake.sln file, right click on CMake project, choose properties. Look Properties-C/C++-General tag, the Debug Information Format field. It says Disabled. Does it work in CMake 2.4.6? Strange,

Re: [CMake] CMake for C# solutions?

2007-05-22 Thread Joshua Jensen
Rob Mathews wrote: Anybody out there used CMake to generate C# .vcproj files? That is, I've got a large C++ code base, and a few C# projects on the side, and I want to use CMake for the C# projects as well. I'd like to know what ideas people have on this, too. There are no references to

[CMake] Segfault with MacOS bundles

2007-05-22 Thread Joshua Jensen
With latest CVS (in an attempt to see if the problem was fixed), I was attempting the following: SET_SOURCE_FILES_PROPERTIES(Somefile.dat PROPERTIES MACOSX_PACKAGE_LOCATION Resources) This works great and does exactly what I expected it would do (assuming it doesn't copy each and

[CMake] INSTALL issues

2007-05-18 Thread Joshua Jensen
I have some questions about the process by which the INSTALL() command works: --- Despite CMAKE_BUILD_TYPE being set to Debug in CMakeSetup for my NMake project, cmLocalGenerator::GenerateInstallRules() creates cmake_install.cmake files with a default line of

Re: [CMake] Configuring different output file names for debug and release

2007-05-11 Thread Joshua Jensen
Mike Jackson wrote: On May 11, 2007, at 7:55 AM, Angel Riesgo wrote: My second question is how I can prevent CMake from adding debug and release intermediate directories to the output path. In the CMakeLists.txt file, I am setting LIBRARY_OUTPUT_PATH to a path ending in lib/win/, but the

[CMake] Xcode application bundle major issues

2007-05-09 Thread Joshua Jensen
to fix this, please let me know. Thanks. Joshua Jensen ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Xcode application bundle major issues

2007-05-09 Thread Joshua Jensen
Bill Hoffman wrote: Joshua Jensen wrote: Upon using CMake with Xcode and instructing CMake to generate application bundles, I've run into the following issues: * When I make a change to a static library, the executable doesn't relink. I have to rm it from the application bundle myself

Re: [CMake] Xcode application bundle major issues

2007-05-09 Thread Joshua Jensen
Bill Hoffman wrote: Joshua Jensen wrote: ersion of CMake are you using? Also, I don't think CMake has anything to do with the clean target, it is managed by Xcode itself. It does seems that this is currently broken in CVS, I am looking into the issue. I have to figure out some way

Re: [CMake] TARGET_LINK_LIBRARIES build types and assorted .vcproj fixes

2007-04-04 Thread Joshua Jensen
Bill Hoffman wrote: Joshua Jensen wrote: * Reservation of a 10 megabyte stack in Windows-cl.cmake is overkill. The default is 1 megabyte. Why is this here? I removed it. I guess this goes back to the projects that CMake was originally developed for. But now due to backward compatibility I