qmake whitespaces

This commit is contained in:
silverqx
2023-08-11 15:53:37 +02:00
parent b77553fc03
commit ed853cbf97
4 changed files with 8 additions and 7 deletions

View File

@@ -12,5 +12,5 @@ build_tests {
SUBDIRS += tests
tests.depends = src
!build_pass: message("Build TinyORM unit tests.")
!build_pass: message( "Build TinyORM unit tests." )
}

View File

@@ -96,7 +96,7 @@ build_tests: \
# Platform specific configuration
# ---
win32: include(winconf.pri)
macx: include(macxconf.pri)
macx: include(macxconf.pri)
mingw|if(unix:!macx): include(unixconf.pri)
!if(win32|macx|if(mingw|if(unix:!macx))): \
@@ -109,6 +109,7 @@ mingw|if(unix:!macx): include(unixconf.pri)
debug_and_release {
CONFIG(release, debug|release): \
TINY_BUILD_SUBFOLDER = $$quote(/release)
else:CONFIG(debug, debug|release): \
TINY_BUILD_SUBFOLDER = $$quote(/debug)
}

View File

@@ -69,8 +69,8 @@ defineTest(tiny_find_mysql_win32) {
TINY_MYSQL_ROOT = $$clean_path($$mysqlRoot)
isEmpty(TINY_MYSQL_ROOT): \
error( "Can't detect the MySQL root folder, please set\
the TINY_MYSQL_ROOT qmake or environment variable." )
error( "Can't detect the MySQL root folder, please set the TINY_MYSQL_ROOT qmake\
or environment variable." )
TINY_MYSQL_INCLUDE = $${TINY_MYSQL_ROOT}/include
TINY_MYSQL_LIB = $${TINY_MYSQL_ROOT}/lib

View File

@@ -26,9 +26,9 @@ defineTest(tiny_version_numbers) {
versionFileContent = $$cat($$quote($$versionHeader), lines)
versionTokens = MAJOR MINOR BUGFIX BUILD STATUS
regexpTokens = $$join(versionTokens, '|')
regexp = "_($${regexpTokens}) +([0-9]+|\"-{1}\w+\")"
versionLines = $$find(versionFileContent, $$regexp)
regexpTokens = $$join(versionTokens, '|')
regexp = "_($${regexpTokens}) +([0-9]+|\"-{1}\w+\")"
versionLines = $$find(versionFileContent, $$regexp)
versionList =
hasStatus = false