c++ - How to integrate chromium browser project in Qt Creator in Ubuntu -
i have managed understand structure of chromium browser , use ide in order make changes personal project on ubuntu trusty machine ( 14.04 ).
it compiled , want use ide make life easier.
i have tried add chromium qt creator using option open project without luck.
could please guide me have achieved ? steps helpful. more, possible compile / build chromium qt creator ? ( avoid typting in console ninja -c out/debug chrome chrome_sandbox , out/debug/chrome every time)
if guys can suggest me ide you're used to, please, guide me , change title of post.
//update 1
i tried make configurations build / run follows:
build:

run 
i following error:
:-1: error: no rule make targetall'. stop.`
//update 2:
the error compile output section 
you can edit code project in qt creator, can't use open project, when isn't qt project. instead use import project -> import existing project in new project dialog.
when have existing project, can define new build steps in projects tab. under build steps choose add build step -> custom process step. here can fill in command using fields command, arguments , working directory. in case, example fill in ninja, -c out/debug chrome chrome_sandbox , %{builddir} first command.

similarely, can click on run (on top of tab) change how project executed after successful compilation.

Comments
Post a Comment