Re: [CMake] CMake with Lua Experiment

2007-11-26 Thread Gonzalo Garramuño
Ken Martin wrote: Just heading down this path as an experiment to get a better feel for it. Posted a snapshot of the source code on the Wiki http://www.cmake.org/Wiki/CMake:Experiments_With_Lua The biggest issues I see are 1) keeping two languages around sounds like more work and who needs mor

Re: [CMake] CMake with Lua Experiment

2007-11-26 Thread Brandon Van Every
On Nov 26, 2007 6:03 PM, Pau Garcia i Quiles <[EMAIL PROTECTED]> wrote: > > Before Lua is added as a language to CMake, I'd like to ask a > question: is there really a need for Lua (or any other language) or is > the current CMake scripting Turing-complete and able to do anything > which could be d

[CMake] CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS available in version X?

2007-11-26 Thread James Bigler
I just noticed this Wiki entry. What version of CMake was this introduced in? It's not mentioned in any of the help files, so I can't track when it was introduced. http://www.cmake.org/Wiki/CMake_FAQ#Isn.27t_the_.22Expression. 22_in_the_.22ELSE_.28Expression.29.22_confusing.3F SET(CMAKE_

Re: [CMake] CMake with Lua Experiment

2007-11-26 Thread Mike Jackson
Let me second that. It seems that those usually unhappy with something speak up and those that are happy stay quiet. This has the unfortunate effect of making something look broke when it really is not. Let me be loud also. I DO NOT NEED ANOTHER LANGUAGE TO LEARN ALL THE NUANCES OF. I LIKE

Re: [CMake] CMake with Lua Experiment

2007-11-26 Thread Pau Garcia i Quiles
Quoting Ken Martin <[EMAIL PROTECTED]>: Just heading down this path as an experiment to get a better feel for it. Posted a snapshot of the source code on the Wiki http://www.cmake.org/Wiki/CMake:Experiments_With_Lua The biggest issues I see are 1) keeping two languages around sounds like more wo

Re: [CMake] CMake with Lua Experiment

2007-11-26 Thread Juan Sanchez
Brandon Van Every wrote: > On Nov 26, 2007 1:18 PM, Ken Martin <[EMAIL PROTECTED]> wrote: >> >> Just heading down this path as an experiment to get a better feel for it. >> Posted a snapshot of the source code on the Wiki >> http://www.cmake.org/Wiki/CMake:Experiments_With_Lua The biggest issues I

Re: [CMake] CMake with Lua Experiment

2007-11-26 Thread Brandon Van Every
On Nov 26, 2007 1:18 PM, Ken Martin <[EMAIL PROTECTED]> wrote: > > > Just heading down this path as an experiment to get a better feel for it. > Posted a snapshot of the source code on the Wiki > http://www.cmake.org/Wiki/CMake:Experiments_With_Lua The biggest issues I > see are 1) keeping two lang

Re: [CMake] setting defines using CMAKE_CXX_FLAGS

2007-11-26 Thread Brandon Van Every
On Nov 26, 2007 2:52 PM, Bill Lorensen <[EMAIL PROTECTED]> wrote: > Try > > SET( CMAKE_CXX_FLAGS "-D DEF1 -D DEF2 -D DEF3 -D DEF4") This is also a FAQ entry now. http://www.cmake.org/Wiki/CMake_FAQ#Why_do_I_have_unwanted_semicolons_.3B_in_my_compiler_flags.3F I added it after it came up last week.

Re: [CMake] setting defines using CMAKE_CXX_FLAGS

2007-11-26 Thread Bill Lorensen
Try SET( CMAKE_CXX_FLAGS "-D DEF1 -D DEF2 -D DEF3 -D DEF4") On Nov 26, 2007 2:03 PM, Jesse Corrington <[EMAIL PROTECTED]> wrote: > I am using CMAKE_CXX_FLAGS to set defines because I want to be able to set > different ones for debug and release using CMAKE_CXX_FLAGS_DEBUG/RELEASE, > which the o

[CMake] setting defines using CMAKE_CXX_FLAGS

2007-11-26 Thread Jesse Corrington
I am using CMAKE_CXX_FLAGS to set defines because I want to be able to set different ones for debug and release using CMAKE_CXX_FLAGS_DEBUG/RELEASE, which the other add define command doesn't seem to support. What I am doing doesn't seem to be working. Here is what I have: SET( CMAKE_CXX_FLAGS

Re: [CMake] target lists

2007-11-26 Thread James Bigler
Is there a way to get a list of all the targets in a given project? I need to get a master list of libraries, and I can't pass global variables up without some intimate knowledge of all the directories where libraries were added. Well, part of the solution is to replace ADD_LIBRARY with my

[CMake] CMake with Lua Experiment

2007-11-26 Thread Ken Martin
Just heading down this path as an experiment to get a better feel for it. Posted a snapshot of the source code on the Wiki http://www.cmake.org/Wiki/CMake:Experiments_With_Lua The biggest issues I see are 1) keeping two languages around sounds like more work and who needs more work 2) variables in

Re: [CMake] windows mobile visual studio 2005 project files

2007-11-26 Thread Alexander Neundorf
On Monday 26 November 2007, Jesse Corrington wrote: > Is there anyway to get CMake to generate visual studio 2005 project files > that will build for windows mobile 5 and 6? Currently not, but it shouldn't be a lot of work. You need cmake cvs, probably a new Modules/Platform/WindowsMobile.cmake p

[CMake] target lists

2007-11-26 Thread James Bigler
Is there a way to get a list of all the targets in a given project? I need to get a master list of libraries, and I can't pass global variables up without some intimate knowledge of all the directories where libraries were added. Thanks, James ___ CM

[CMake] windows mobile visual studio 2005 project files

2007-11-26 Thread Jesse Corrington
Is there anyway to get CMake to generate visual studio 2005 project files that will build for windows mobile 5 and 6? ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Visual Studio reload projects

2007-11-26 Thread David Cole
We have created a Visual Studio macro that will reload the .sln solution file in order to avoid clicking "Reload" in multiple dialogs. It currently works with Visual Studio 8 2005 (and probably with VS 9 2008, also, but not yet tested in that environment.) The macro is called automatically by CMak