Files
TinyORM/tests/auto/functional/orm/orm.pro
T
silverqx fc477bf1e5 added qmake/cmake option to disable ORM
Added TINYORM_DISABLE_ORM macro controlled by ORM for CMake and
disable_orm for qmake. When TINYORM_DISABLE_ORM macro is defined then
only the query builder without ORM is compiled.
Also excludes ORM-related unit tests.
2021-12-31 11:40:12 +01:00

14 lines
176 B
Prolog

TEMPLATE = subdirs
subdirsList = \
databasemanager \
query \
!disable_orm: \
subdirsList += \
tiny \
SUBDIRS = $$sorted(subdirsList)
unset(subdirsList)