diff --git a/drape/drape_common.pri b/drape/drape_common.pri index c147b70bf0..3b1d585d09 100644 --- a/drape/drape_common.pri +++ b/drape/drape_common.pri @@ -75,3 +75,4 @@ HEADERS += \ $$DRAPE_DIR/utils/stb_image.h \ $$DRAPE_DIR/attribute_buffer_mutator.hpp \ $$DRAPE_DIR/drape_global.hpp \ + $$DRAPE_DIR/object_pool.hpp \ diff --git a/drape/drape_tests/drape_tests.pro b/drape/drape_tests/drape_tests.pro index 5d5e0c8f02..229aae9be7 100644 --- a/drape/drape_tests/drape_tests.pro +++ b/drape/drape_tests/drape_tests.pro @@ -39,6 +39,7 @@ SOURCES += \ pointers_tests.cpp \ font_texture_tests.cpp \ bingind_info_tests.cpp \ + object_pool_tests.cpp \ HEADERS += \ glmock_functions.hpp \ diff --git a/drape_frontend/drape_frontend_tests/drape_frontend_tests.pro b/drape_frontend/drape_frontend_tests/drape_frontend_tests.pro index a8f3cb883c..980cee98bf 100644 --- a/drape_frontend/drape_frontend_tests/drape_frontend_tests.pro +++ b/drape_frontend/drape_frontend_tests/drape_frontend_tests.pro @@ -4,7 +4,7 @@ CONFIG += console warn_on CONFIG -= app_bundle TEMPLATE = app -DEPENDENCIES = drape_frontend base fribidi +DEPENDENCIES = drape_frontend drape base fribidi ROOT_DIR = ../.. include($$ROOT_DIR/common.pri) @@ -12,3 +12,4 @@ SOURCES += \ ../../testing/testingmain.cpp \ memory_feature_index_tests.cpp \ fribidi_tests.cpp \ + object_pool_tests.cpp \