mirror of
https://github.com/silverqx/TinyORM.git
synced 2025-12-21 10:29:36 -06:00
Moved all features which aren't used through CONFIG+=xyz and are loaded using the load(private/xyz) function to the qmake/features/private/ folder. Currently, the qmake/features/ folder contains only features which should be used using the CONFIG+= qmake variable.
12 lines
175 B
Prolog
12 lines
175 B
Prolog
TEMPLATE = subdirs
|
|
|
|
load(private/tiny_drivers)
|
|
|
|
SUBDIRS = common
|
|
|
|
build_loadable_drivers: \
|
|
tiny_is_building_driver(mysql) {
|
|
SUBDIRS += mysql
|
|
mysql.depends = common
|
|
}
|