提交 dfe2f409 编写于 作者: R Ryan Foster 提交者: Jim

cmake: Require Qt if UI is enabled

In CMakeLists.txt, FIND_MODE is not defined here. This was moved from
UI/CMakeLists.txt in commit cb4d2ff7. In
UI/CMakeLists.txt, FIND_MODE is REQUIRED if DISABLE_UI is false or
undefined and ENABLE_UI is true. Since the same booleans are required
for the if-else branch in CMakeLists.txt where we try to find Qt, we can
set find_package to REQUIRED here as well.
上级 9ecae253
......@@ -254,7 +254,7 @@ if(NOT INSTALLER_RUN)
list(APPEND CMAKE_PREFIX_PATH "$ENV{QTDIR}")
endif()
find_package(Qt5Widgets ${FIND_MODE})
find_package(Qt5Widgets REQUIRED)
endif()
add_subdirectory(deps)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册