You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
617 B
27 lines
617 B
#------------------------------------------------- |
|
# |
|
# QupZilla - QtWebKit browser |
|
# |
|
# Project created by QtCreator 2010-12-18T14:53:41 |
|
# |
|
#------------------------------------------------- |
|
|
|
lessThan(QT_VERSION, 4.7) { |
|
error("QupZilla requires at least Qt 4.7!") |
|
} |
|
|
|
# Create plugins directory first on Mac / Linux |
|
mac|unix: system(test -d bin/plugins || mkdir bin/plugins) |
|
|
|
TEMPLATE = subdirs |
|
|
|
src_lib.subdir = src/lib |
|
src_lib.target = sub-src-lib |
|
|
|
src_main.subdir = src/main |
|
src_main.depends = sub-src-lib |
|
|
|
src_plugins.subdir = src/plugins |
|
src_plugins.depends = sub-src-lib |
|
|
|
SUBDIRS += src_lib src_main
|
|
|