forked from organicmaps/organicmaps
Added missing files
This commit is contained in:
parent
8d98cd3008
commit
665b66d575
3 changed files with 38 additions and 0 deletions
1
omim.pro
1
omim.pro
|
@ -37,6 +37,7 @@ SUBDIRS = 3party \
|
|||
platform \
|
||||
yg \
|
||||
indexer \
|
||||
search \
|
||||
version \
|
||||
storage \
|
||||
map \
|
||||
|
|
16
search/search.pro
Normal file
16
search/search.pro
Normal 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 \
|
21
search/search_tests/search_tests.pro
Normal file
21
search/search_tests/search_tests.pro
Normal 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 \
|
Loading…
Add table
Reference in a new issue