c++ - How to get executables using premake? -
sorry if question naive i'm new using build tools used visual studio's default build tool( right click , select build ).
now working linux, , want develop cross platform application.i'm using premake i've heard "insanely" cross platform compatible. made premake.lua unable find should appropriate name toolset parameter if want compile using g++( believe stands compiler ) in command:
premake --target toolset
i checked link: http://premake.sourceforge.net/what_is_premake , many others give toolset name gcc, code::blocks etc not g++.secondly if give toolset name cb-ow, cde::blocks. don't executables, .cbw files
you don't need specify toolset @ all. do:
premake4 gmake
it use default toolset (which gcc on linux).
oh, should mention using premake 3, way out of date @ point. check out 4.x stuff here: http://industriousone.com/premake.
Comments
Post a Comment