Skip to content

Instantly share code, notes, and snippets.

@candycode
Created March 10, 2014 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save candycode/9468306 to your computer and use it in GitHub Desktop.
Save candycode/9468306 to your computer and use it in GitHub Desktop.
Build chromium embedded framework app w/ qt on ubuntu 13.04
#!/bin/sh
#NOTE: need to set L to the proper libcef_dll top level dir: ../out/Release/obj.target
g++ -I../ -o qt qt.cpp cefw.cpp `pkg-config --cflags gtk+-2.0` \
`pkg-config --libs gdk-2.0` \
-L../out/Release/obj.target -L../Release -lcef_dll_wrapper -lcef `pkg-config --cflags QtCore QtGui --libs QtCore QtGui`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment