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 <alex@maps.me>2015-06-24 13:18:23 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:30 +0300
commit9e2c0b978e26d5b668fa36c3a01fac79913932db (patch)
tree3bd41a02ff59c23d2e4d19fd8be4df9eac005bae /common.pri
parent46ca53707fa08de082b1e3695fa769cfd628161f (diff)
Added standard includes into the project for correct build dependencies support.
Diffstat (limited to 'common.pri')
-rw-r--r--common.pri62
1 files changed, 62 insertions, 0 deletions
diff --git a/common.pri b/common.pri
index 4962069a29..2ae5e54404 100644
--- a/common.pri
+++ b/common.pri
@@ -212,3 +212,65 @@ win32* {
} else {
QMAKE_MOC = $$[QT_INSTALL_BINS]/moc -DBOOST_TT_HAS_OPERATOR_HPP_INCLUDED
}
+
+# Standard includes wrappers.
+HEADERS += \
+ $$ROOT_DIR/std/algorithm.hpp \
+ $$ROOT_DIR/std/array.hpp \
+ $$ROOT_DIR/std/atomic.hpp \
+ $$ROOT_DIR/std/auto_ptr.hpp \
+ $$ROOT_DIR/std/bind.hpp \
+ $$ROOT_DIR/std/bitset.hpp \
+ $$ROOT_DIR/std/cctype.hpp \
+ $$ROOT_DIR/std/cerrno.hpp \
+ $$ROOT_DIR/std/chrono.hpp \
+ $$ROOT_DIR/std/cmath.hpp \
+ $$ROOT_DIR/std/complex.hpp \
+ $$ROOT_DIR/std/condition_variable.hpp \
+ $$ROOT_DIR/std/cstdarg.hpp \
+ $$ROOT_DIR/std/cstdio.hpp \
+ $$ROOT_DIR/std/cstdlib.hpp \
+ $$ROOT_DIR/std/cstring.hpp \
+ $$ROOT_DIR/std/ctime.hpp \
+ $$ROOT_DIR/std/deque.hpp \
+ $$ROOT_DIR/std/errno.hpp \
+ $$ROOT_DIR/std/exception.hpp \
+ $$ROOT_DIR/std/fstream.hpp \
+ $$ROOT_DIR/std/function.hpp \
+ $$ROOT_DIR/std/functional.hpp \
+ $$ROOT_DIR/std/initializer_list.hpp \
+ $$ROOT_DIR/std/iomanip.hpp \
+ $$ROOT_DIR/std/ios.hpp \
+ $$ROOT_DIR/std/iostream.hpp \
+ $$ROOT_DIR/std/iterator.hpp \
+ $$ROOT_DIR/std/iterator_facade.hpp \
+ $$ROOT_DIR/std/kdtree.hpp \
+ $$ROOT_DIR/std/limits.hpp \
+ $$ROOT_DIR/std/list.hpp \
+ $$ROOT_DIR/std/map.hpp \
+ $$ROOT_DIR/std/msvc_cpp11_workarounds.hpp \
+ $$ROOT_DIR/std/mutex.hpp \
+ $$ROOT_DIR/std/noncopyable.hpp \
+ $$ROOT_DIR/std/numeric.hpp \
+ $$ROOT_DIR/std/queue.hpp \
+ $$ROOT_DIR/std/set.hpp \
+ $$ROOT_DIR/std/shared_array.hpp \
+ $$ROOT_DIR/std/shared_ptr.hpp \
+ $$ROOT_DIR/std/sstream.hpp \
+ $$ROOT_DIR/std/stack.hpp \
+ $$ROOT_DIR/std/stdint.hpp \
+ $$ROOT_DIR/std/string.hpp \
+ $$ROOT_DIR/std/systime.hpp \
+ $$ROOT_DIR/std/target_os.hpp \
+ $$ROOT_DIR/std/thread.hpp \
+ $$ROOT_DIR/std/transform_iterator.hpp \
+ $$ROOT_DIR/std/tuple.hpp \
+ $$ROOT_DIR/std/type_traits.hpp \
+ $$ROOT_DIR/std/typeinfo.hpp \
+ $$ROOT_DIR/std/unique_ptr.hpp \
+ $$ROOT_DIR/std/unordered_map.hpp \
+ $$ROOT_DIR/std/unordered_set.hpp \
+ $$ROOT_DIR/std/utility.hpp \
+ $$ROOT_DIR/std/vector.hpp \
+ $$ROOT_DIR/std/weak_ptr.hpp \
+ $$ROOT_DIR/std/windows.hpp \