diff --git a/guh.pro b/guh.pro index 851477fe..b612637a 100644 --- a/guh.pro +++ b/guh.pro @@ -43,6 +43,14 @@ message("JSON-RPC API version $${JSON_PROTOCOL_VERSION}") message("REST API version $${REST_API_VERSION}") message("Plugin path $${GUH_PLUGINS_PATH}") +# Check debug mode +CONFIG(debug, debug|release) { + message("Debug build") +} else { + message("Release build") +} + +# Build coverage coverage { message("Building coverage.") } diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro index 8540b518..c577c819 100644 --- a/tests/auto/auto.pro +++ b/tests/auto/auto.pro @@ -18,3 +18,4 @@ SUBDIRS = versioning \ restlogging \ #coap \ # temporary removed until fixed configurations \ + timemanager \