[qmake] Added bsdiff to the qmake project.
This commit is contained in:
parent
93960b3ad1
commit
79a2b49c20
3 changed files with 43 additions and 3 deletions
|
@ -7,8 +7,22 @@ TEMPLATE = subdirs
|
|||
CONFIG *= desktop
|
||||
}
|
||||
|
||||
SUBDIRS = freetype minizip jansson protobuf osrm expat succinct pugixml liboauthcpp stb_image sdf_image \
|
||||
icu agg
|
||||
SUBDIRS = \
|
||||
agg \
|
||||
bsdiff-courgette \
|
||||
expat \
|
||||
freetype \
|
||||
icu \
|
||||
jansson \
|
||||
liboauthcpp \
|
||||
minizip \
|
||||
osrm \
|
||||
protobuf \
|
||||
pugixml \
|
||||
sdf_image \
|
||||
stb_image \
|
||||
succinct \
|
||||
|
||||
|
||||
# TODO(mgsrergio): Move opening hours out of 3party to the main project tree.
|
||||
# See https://trello.com/c/tWYSnXSS/22-opening-hours-3party-boost-test-framework.
|
||||
|
|
26
3party/bsdiff-courgette/bsdiff-courgette.pro
Normal file
26
3party/bsdiff-courgette/bsdiff-courgette.pro
Normal file
|
@ -0,0 +1,26 @@
|
|||
TARGET = bsdiff
|
||||
TEMPLATE = lib
|
||||
CONFIG += staticlib
|
||||
|
||||
ROOT_DIR = ../..
|
||||
|
||||
include($$ROOT_DIR/common.pri)
|
||||
|
||||
INCLUDEPATH *= \
|
||||
bsdiff \
|
||||
divsufsort \
|
||||
|
||||
HEADERS += \
|
||||
bsdiff/bsdiff.h \
|
||||
bsdiff/bsdiff_common.h \
|
||||
bsdiff/bsdiff_search.h \
|
||||
bsdiff/paged_array.h \
|
||||
divsufsort/divsufsort.h \
|
||||
divsufsort/divsufsort_private.h \
|
||||
|
||||
|
||||
SOURCES += \
|
||||
divsufsort/divsufsort.cc \
|
||||
divsufsort/sssort.cc \
|
||||
divsufsort/trsort.cc \
|
||||
|
|
@ -4,7 +4,7 @@ CONFIG -= app_bundle
|
|||
TEMPLATE = app
|
||||
|
||||
ROOT_DIR = ../../..
|
||||
DEPENDENCIES = mwm_diff platform coding base stats_client
|
||||
DEPENDENCIES = mwm_diff bsdiff platform coding base stats_client
|
||||
|
||||
|
||||
include($$ROOT_DIR/common.pri)
|
||||
|
|
Reference in a new issue