aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorRenaud Guezennec <renaud@rolisteam.org>2024-01-09 19:20:01 +0100
committerRenaud Guezennec <renaud@rolisteam.org>2024-01-09 19:20:01 +0100
commit0e5338c83c5e01e098cd9c0c18c2ce8fd368cab7 (patch)
treebfc7c5ef52230663858424df4990afd56eec1a8e
parent92db129f16991b8e5b8870b08d96dcfe5749b926 (diff)
downloadOneRoll-cpp.tar.gz
OneRoll-cpp.zip
remove useless dependenciescpp
-rw-r--r--src/bin/cli/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/cli/CMakeLists.txt b/src/bin/cli/CMakeLists.txt
index 6e17c1e..45d56ae 100644
--- a/src/bin/cli/CMakeLists.txt
+++ b/src/bin/cli/CMakeLists.txt
@@ -16,10 +16,10 @@ set(EXECUTABLE_OUTPUT_PATH bin/)
set(QT_REQUIRED_VERSION "6.2.0")
IF(NO_PAINTER_OPERATOR)
- find_package(Qt6 ${QT_REQUIRED_VERSION} CONFIG REQUIRED COMPONENTS Core Svg LinguistTools)
+ find_package(Qt6 ${QT_REQUIRED_VERSION} CONFIG REQUIRED COMPONENTS Core Svg)
else()
MESSAGE(STATUS "Compilation of operator Paint")
- find_package(Qt6 ${QT_REQUIRED_VERSION} CONFIG REQUIRED COMPONENTS Core Gui Svg LinguistTools)
+ find_package(Qt6 ${QT_REQUIRED_VERSION} CONFIG REQUIRED COMPONENTS Core Gui Svg)
add_definitions(-DPAINTER_OP)
endif()