mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 17:01:18 +02:00
Added message to know Qt path.
This commit is contained in:
parent
c05ac9a5dd
commit
91eacf7d3c
1 changed files with 4 additions and 1 deletions
|
@ -11,8 +11,11 @@ macro(setup_qt)
|
||||||
# if we are in a development build and QT_CMAKE_PREFIX_PATH is specified
|
# if we are in a development build and QT_CMAKE_PREFIX_PATH is specified
|
||||||
# then use it,
|
# then use it,
|
||||||
# otherwise, use the vcpkg'ed version
|
# otherwise, use the vcpkg'ed version
|
||||||
if (RELEASE_TYPE STREQUAL "DEV" AND DEFINED ENV{QT_CMAKE_PREFIX_PATH} )
|
if (RELEASE_TYPE STREQUAL "DEV" AND DEFINED ENV{QT_CMAKE_PREFIX_PATH})
|
||||||
|
message("Development build and QT_CMAKE_PREFIX_PATH is defined in environment - using this path for Qt")
|
||||||
set(QT_CMAKE_PREFIX_PATH $ENV{QT_CMAKE_PREFIX_PATH})
|
set(QT_CMAKE_PREFIX_PATH $ENV{QT_CMAKE_PREFIX_PATH})
|
||||||
|
else()
|
||||||
|
message(" Using vcpkg'ed version of Qt")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# figure out where the qt dir is
|
# figure out where the qt dir is
|
||||||
|
|
Loading…
Reference in a new issue