Fix qmake warning message if plugin.pri isn't found

pull/1/head
Michael Zanetti 2021-07-10 15:49:04 +02:00
parent ce7db39da9
commit 3201c36153
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@ isEmpty(PLUGIN_PRI) {
exists($$[QT_INSTALL_PREFIX]/include/nymea/plugin.pri) {
include($$[QT_INSTALL_PREFIX]/include/nymea/plugin.pri)
} else {
message("plugin.pri not found. Either install libnymea1-dev or use the PLUGIN_PRI argument to point to it.")
message("For building this project without nymea installed system-wide, you will want to export those variables in addition:")
message("plugin.pri not found. Either install nymea-sdk or use the PLUGIN_PRI argument to point to it.")
message("For building this project without the nymea-sdk installed system-wide, you will want to export those variables in addition:")
message("PKG_CONFIG_PATH=/path/to/build-nymea/libnymea/pkgconfig/")
message("CPATH=/path/to/nymea/libnymea/")
message("LIBRARY_PATH=/path/to/build-nymea/libnymea/")