Re: [cmake-developers] lua bindings?

2012-08-23 Thread Alexander Neundorf
On Thursday 23 August 2012, Peter Kümmel wrote: > Here an example how a Lua based build system could look like: > https://github.com/deplinenoise/tundra/blob/master/tundra.lua > > And more details here: > http://deplinenoise.files.wordpress.com/2011/04/tundra43.pdf So, another buildsyst

Re: [cmake-developers] lua bindings?

2012-08-23 Thread Peter Kümmel
Here an example how a Lua based build system could look like: https://github.com/deplinenoise/tundra/blob/master/tundra.lua And more details here: http://deplinenoise.files.wordpress.com/2011/04/tundra43.pdf Peter -- Powered by www.kitware.com Visit other Kitware open-source projects a

Re: [cmake-developers] lua bindings?

2012-08-06 Thread Brad King
On 08/03/2012 08:51 PM, Doug wrote: > helper.set_automake_path("lib/tools/openssl-1.0.1c") > helper.automake(app) [snip] On 08/03/2012 08:51 PM, Doug wrote: > I've found lately that I am using increasingly complex scripts to > convert existing automake projects (notably freeglut, openssl 1.0.1 > an

Re: [cmake-developers] lua bindings?

2012-08-04 Thread Eric Wing
On 8/3/12, Doug wrote: > Sorry, lots of talk. Tangibly I imagine something like this: > I recommend you skim the CMakeLua group for the old posts. (There aren't that many.) https://groups.google.com/forum/?fromgroups#!forum/cmakelua If I recall, Peter Kümmel had some interesting ideas/code for i

Re: [cmake-developers] lua bindings?

2012-08-03 Thread Doug
Sorry, lots of talk. Tangibly I imagine something like this: local helper = cmake:context() helper.set_build_dir("helper") helper.configure("-DBUILD_TESTS=ON") helper:file("GLOB_RECURSE", "SOURCES", "${CMAKE_CURRENT_SOURCE_DIR}/*.c") helper:add_library("help", "SHARED", "${SOURCES}") helper:get_p

Re: [cmake-developers] lua bindings?

2012-08-03 Thread Bill Hoffman
On 8/3/2012 5:30 PM, Óscar Fuentes wrote: Brad King writes: [snip] As for your first option, a "zero-impact wrapper", what do you envision would be the benefits? [I'm not the OP] Something I sorely miss on CMake is a way to express algorithms in a clear way and to process large amounts of

Re: [cmake-developers] lua bindings?

2012-08-03 Thread Óscar Fuentes
Brad King writes: [snip] > As for your first option, a "zero-impact wrapper", what do you > envision would be the benefits? [I'm not the OP] Something I sorely miss on CMake is a way to express algorithms in a clear way and to process large amounts of data efficiently. For an example that cou

Re: [cmake-developers] lua bindings?

2012-08-03 Thread Brad King
On 08/03/2012 04:33 PM, Eric Wing wrote: > Yes, there was a big long thread on the CMake lists back in 2008-ish The main two threads started here: http://www.cmake.org/pipermail/cmake/2007-November/017347.html http://www.cmake.org/pipermail/cmake/2007-November/017971.html Ken's experiment only

Re: [cmake-developers] lua bindings?

2012-08-03 Thread Eric Wing
On 8/2/12, Doug wrote: > I'm quite curious about the possibility of writing a lua binding for cmake. > > There are two possible ways to go: > > 1) Create a set of discrete lua bindings which actually invoke cmake > itself. > > 2) Integrate lua into cmake itself. > Yes, there was a big long thread

[cmake-developers] lua bindings?

2012-08-02 Thread Doug
I'm quite curious about the possibility of writing a lua binding for cmake. There are two possible ways to go: 1) Create a set of discrete lua bindings which actually invoke cmake itself. 2) Integrate lua into cmake itself. Before I go and do anything, has any effort been made to do either of t