Created
March 10, 2014 16:22
-
-
Save candycode/9468306 to your computer and use it in GitHub Desktop.
Build chromium embedded framework app w/ qt on ubuntu 13.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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