1TEMPLATE = subdirs
2
3CONFIG += ordered
4#DEFINES += ENABLE_GIFLIB
5
6SUBDIRS += \
7    third_party/harfbuzz \
8    third_party/icu \
9    third_party/libjpeg-turbo \
10    third_party/zlib \
11    third_party/libpng \
12    third_party/freetype \
13    third_party/qrcodegen \
14    libui \
15    test \
16    autotest/auto_test.pro \
17    uitest/UITest.pro
18
19HEADERS += \
20    ../../../test/framework/common/ui_test_canvas_common.h
21
22if(contains(DEFINES, ENABLE_GIFLIB)){
23    SUBDIRS += \
24        third_party/giflib \
25        third_party/giflib/giflib.pro
26}