[qmake] Added bsdiff to the qmake project.

This commit is contained in:
Maxim Pimenov 2017-08-16 18:23:50 +03:00 committed by Vladimir Byko-Ianko
parent 93960b3ad1
commit 79a2b49c20
3 changed files with 43 additions and 3 deletions

View file

@ -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.

View 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 \

View file

@ -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)