From a64bd5e11b919a5efe76b7fec43fdd717d4fd5dc Mon Sep 17 00:00:00 2001 From: David Cernat Date: Sun, 25 Jul 2021 21:47:23 +0200 Subject: [PATCH] [General] Add missing parenthesis to CMakeLists.txt in components --- components/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/CMakeLists.txt b/components/CMakeLists.txt index 208ad070d..821277af5 100644 --- a/components/CMakeLists.txt +++ b/components/CMakeLists.txt @@ -370,7 +370,7 @@ endif() # # Don't require Qt when building the server if (USE_QT) -if (BUILD_OPENMW OR BUILD_OPENCS +if (BUILD_OPENMW OR BUILD_OPENCS) target_link_libraries(components Qt5::Widgets Qt5::Core) endif() endif()