diff --git a/drape/drape_common.pri b/drape/drape_common.pri index 5569f00037..4e139ddf99 100644 --- a/drape/drape_common.pri +++ b/drape/drape_common.pri @@ -32,7 +32,9 @@ SOURCES += \ $$DRAPE_DIR/overlay_handle.cpp \ $$DRAPE_DIR/index_buffer_mutator.cpp \ $$DRAPE_DIR/batcher_helpers.cpp \ - $$DRAPE_DIR/overlay_tree.cpp + $$DRAPE_DIR/overlay_tree.cpp \ + $$DRAPE_DIR/texture_font.cpp \ + $$DRAPE_DIR/font_loader.cpp \ HEADERS += \ $$DRAPE_DIR/data_buffer.hpp \ @@ -70,4 +72,6 @@ HEADERS += \ $$DRAPE_DIR/overlay_handle.hpp \ $$DRAPE_DIR/index_buffer_mutator.hpp \ $$DRAPE_DIR/batcher_helpers.hpp \ - $$DRAPE_DIR/overlay_tree.hpp + $$DRAPE_DIR/overlay_tree.hpp \ + $$DRAPE_DIR/texture_font.h \ + $$DRAPE_DIR/font_loader.hpp \ diff --git a/drape/drape_tests/drape_tests.pro b/drape/drape_tests/drape_tests.pro index 7b26683297..11fbeae393 100644 --- a/drape/drape_tests/drape_tests.pro +++ b/drape/drape_tests/drape_tests.pro @@ -36,7 +36,8 @@ SOURCES += \ attribute_provides_tests.cpp \ compile_shaders_test.cpp \ batcher_tests.cpp \ - pointers_tests.cpp + pointers_tests.cpp \ + font_loader_tests.cpp HEADERS += \ glmock_functions.hpp \