diff --git a/examples/tom/tom.pro b/examples/tom/tom.pro index fa24a8994..71ef78310 100644 --- a/examples/tom/tom.pro +++ b/examples/tom/tom.pro @@ -4,13 +4,16 @@ QT -= gui TEMPLATE = app TARGET = tom +# Link against TinyORM library for Tom application (also adds defines and include headers) +# --- + +include($$TINYORM_SOURCE_TREE/qmake/tom.pri) + # TinyTom example application specific configuration # --- CONFIG *= cmdline -include($$TINYORM_SOURCE_TREE/qmake/tom.pri) - # TinyTom example application defines # --- diff --git a/tests/testdata_tom/testdata_tom.pro b/tests/testdata_tom/testdata_tom.pro index 84d41da5f..1c14afa5f 100644 --- a/tests/testdata_tom/testdata_tom.pro +++ b/tests/testdata_tom/testdata_tom.pro @@ -4,13 +4,16 @@ QT -= gui TEMPLATE = app TARGET = tom_testdata +# Link against TinyORM library for Tom application (also adds defines and include headers) +# --- + +include($$TINYORM_SOURCE_TREE/qmake/tom.pri) + # TinyTom migrations for unit tests specific configuration # --- CONFIG *= cmdline -include($$TINYORM_SOURCE_TREE/qmake/tom.pri) - # TinyTom migrations for unit tests defines # ---