phantomjs/src/phantomjs.pro

52 lines
942 B
Prolog
Raw Normal View History

2010-12-27 07:04:53 +03:00
TEMPLATE = app
TARGET = phantomjs
QT += network webkit
2010-12-28 02:26:22 +03:00
CONFIG += console
# Comment to enable Debug Messages
DEFINES += QT_NO_DEBUG_OUTPUT
DESTDIR = ../bin
RESOURCES = phantomjs.qrc
HEADERS += csconverter.h \
phantom.h \
webpage.h \
consts.h \
utils.h \
networkreplyproxy.h \
networkaccessmanager.h \
2011-07-19 21:32:42 +04:00
cookiejar.h \
filesystem.h \
terminal.h \
encoding.h \
2011-08-28 16:05:34 +04:00
config.h
SOURCES += phantom.cpp \
webpage.cpp \
main.cpp \
csconverter.cpp \
utils.cpp \
networkreplyproxy.cpp \
networkaccessmanager.cpp \
2011-07-19 21:32:42 +04:00
cookiejar.cpp \
filesystem.cpp \
terminal.cpp \
encoding.cpp \
2011-08-28 16:05:34 +04:00
config.cpp
2011-02-20 09:07:22 +03:00
OTHER_FILES += usage.txt \
bootstrap.js \
2011-08-29 19:43:41 +04:00
configurator.js
2011-02-20 09:07:22 +03:00
include(gif/gif.pri)
win32: RC_FILE = phantomjs_win.rc
os2: RC_FILE = phantomjs_os2.rc
mac {
CONFIG -= app_bundle
# Uncomment to build a Mac OS X Universal Binary (i.e. x86 + ppc)
# CONFIG += x86 ppc
}