c++ - What default make tool does NetBeans use -


iv been writing small c program netbeans 8 on linux. uses configuration.xml file compile makefile together. i'v searched little there little information on tool supports file or if netbeans internal tool. how call command line etc.

i hoping alternative build tool, far no scons, waf, ninja, cmake, qmake

does have experience it?

how looks like:

<configurationdescriptor version="95"> <logicalfolder name="root" displayname="root" projectfiles="true" kind="root"> <logicalfolder name="headerfiles" ...>

what default make tool netbeans use

it uses make per default. default c/c++ project types generate makefiles you. can use custom makefiles instead - , other build tools (like cmake, qmake, ...).

i'v searched little there little information on tool supports file or if netbeans internal tool.

the configurations.xml netbeans internal only.

btw. modify file only, if sure doing - has capability break project!

how call command line etc.

you mean configurations.xml? if so; can't. said above, it's nb internal usage only. it's not necessary though. netbeans provide makefiles need. can build using make usual way.

does have experience it?

if generated makefiles don't serve purpose can either customize (check comments within files) - or write custom 1 , create project it.

as commented hekto, cmake alternative build tool works great netbeans. it's used c/c++ project , has lot's of benefits. furthermore cmake-based projects can used other ide's (like eclipse or visualstudio) - , if fails call terminal ;-).


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -