From 892e153b751b9926d0cf1976f38d299e2d2e2ded Mon Sep 17 00:00:00 2001 From: silverqx Date: Wed, 6 Sep 2023 17:10:59 +0200 Subject: [PATCH] qmake moved include(tom.pri) few lines up - also added section comment --- examples/tom/tom.pro | 7 +++++-- tests/testdata_tom/testdata_tom.pro | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) 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 # ---