Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <deathbaba@gmail.com>2011-05-30 04:59:01 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:18:20 +0300
commitb3ff13a3b5f909cee488082509a21f678ff8b0da (patch)
tree10b74154b538767285c53a7ce075e13655b008a8 /platform/platform.pro
parent7f94026eda491f048fef343ef8bbb8136a0059fe (diff)
Added simple concurrent threads pool
Diffstat (limited to 'platform/platform.pro')
-rw-r--r--platform/platform.pro22
1 files changed, 13 insertions, 9 deletions
diff --git a/platform/platform.pro b/platform/platform.pro
index feed73c5dc..be31118f99 100644
--- a/platform/platform.pro
+++ b/platform/platform.pro
@@ -19,33 +19,37 @@ QT *= core network
wifi_location_service.cpp \
qt_download_manager.cpp \
qt_download.cpp \
+ qt_concurrent_runner.cpp \
HEADERS += \
qt_download_manager.hpp \
qt_download.hpp \
wifi_info.hpp
+} else:iphone* {
+ SOURCES += ios_concurrent_runner.mm
}
-HEADERS += \
- platform.hpp \
- download_manager.hpp \
- location.hpp \
-
macx|iphone* {
- OBJECTIVE_SOURCES += apple_location_service.mm
- LIBS += -framework CoreLocation -framework Foundation
-} else {
- SOURCES +=
+ OBJECTIVE_SOURCES += apple_location_service.mm
+ LIBS += -framework CoreLocation -framework Foundation
}
macx:!iphone* {
OBJECTIVE_SOURCES += wifi_info_mac.mm
LIBS += -framework CoreWLAN
}
+
win32 {
SOURCES += wifi_info_windows.cpp
}
# common sources for all platforms
+
+HEADERS += \
+ platform.hpp \
+ download_manager.hpp \
+ location.hpp \
+ concurrent_runner.hpp \
+
SOURCES += \
location_manager.cpp \