diff options
| author | 2024-01-09 19:20:01 +0100 | |
|---|---|---|
| committer | 2024-01-09 19:20:01 +0100 | |
| commit | 0e5338c83c5e01e098cd9c0c18c2ce8fd368cab7 (patch) | |
| tree | bfc7c5ef52230663858424df4990afd56eec1a8e /src/bin/cli/CMakeLists.txt | |
| parent | 92db129f16991b8e5b8870b08d96dcfe5749b926 (diff) | |
| download | OneRoll-0e5338c83c5e01e098cd9c0c18c2ce8fd368cab7.tar.gz OneRoll-0e5338c83c5e01e098cd9c0c18c2ce8fd368cab7.zip | |
remove useless dependenciescpp
Diffstat (limited to 'src/bin/cli/CMakeLists.txt')
| -rw-r--r-- | src/bin/cli/CMakeLists.txt | 4 |
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() |