Added missing files

This commit is contained in:
Alex Zolotarev 2011-05-18 03:07:01 +02:00 committed by Alex Zolotarev
parent 8d98cd3008
commit 665b66d575
3 changed files with 38 additions and 0 deletions

View file

@ -37,6 +37,7 @@ SUBDIRS = 3party \
platform \
yg \
indexer \
search \
version \
storage \
map \

16
search/search.pro Normal file
View file

@ -0,0 +1,16 @@
# Search library.
TARGET = search
TEMPLATE = lib
CONFIG += staticlib
ROOT_DIR = ..
DEPENDENCIES = indexer geometry coding base
include($$ROOT_DIR/common.pri)
HEADERS += \
search_processor.hpp \
SOURCES += \
search_processor.cpp \

View file

@ -0,0 +1,21 @@
# Map library tests.
TARGET = search_tests
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
ROOT_DIR = ../..
DEPENDENCIES = search indexer platform geometry coding base expat
include($$ROOT_DIR/common.pri)
win32 {
LIBS += -lShell32
win32-g++ {
LIBS += -lpthread
}
}
SOURCES += \
../../testing/testingmain.cpp \