User forums > Help
Debug with custom makefile
Game_Ender:
It looks like a mix of scons (A good interface language ) and CMake (generates build files, doens't run the build).
takeshimiya:
--- Quote from: Game_Ender on November 02, 2006, 09:17:13 pm ---It looks like a mix of scons (A good interface language ) and CMake (generates build files, doens't run the build).
--- End quote ---
Yes, or a mix of lua (easy embeddable language) and bakefile (generates makefiles and projects).
But premake it's actually the first one I really like, and the only one to support CodeBlocks output as of now.
Look how easy is to create a project which compiles the minimal wx sample (works at least from gnu makefiles and codeblocks),
Full source:
--- Code: (lua) ----- Creates a project for the minimal wx sample
project.name = "minimal"
package = newpackage()
package.language = "c++"
package.files = { "minimal.cpp" }
package.buildoptions = { "`wx-config --cxxflags`" }
package.linkoptions = { "`wx-config --libs`" }
--- End code ---
Navigation
[0] Message Index
[*] Previous page
Go to full version