4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-05 22:19:36 +00:00

Fixed typos on CMakeLists.txt

Signed-off-by: Erick Frederick <erickfcaldeira@gmail.com>
This commit is contained in:
Erick Frederick 2024-05-29 13:38:27 -03:00 committed by GitHub
parent ae74b8f133
commit c80430b881
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -8,7 +8,7 @@
cmake_minimum_required(VERSION 3.18)
project(CQtDeployer LANGUAGES CXX)
if(TARGET ${PROJECT_NAME})
message("The ${PROJECT_NAME} arledy included in main Project")
message("The ${PROJECT_NAME} already included in main Project")
return()
endif()
@ -46,14 +46,14 @@ option(CQT_DEPLOYER_TESTS "This option disables or enables tests of the ${PROJEC
option(CQT_DEPLOYER_TOOL "This option disables or enables example app of the ${PROJECT_NAME} project" ON)
if (ANDROID OR IOS OR NOT QT_VERSION_MAJOR OR QA_WASM32)
message(WARNING "CQtDeployer is not availabel for wasm, android and ios platforms")
message(WARNING "CQtDeployer is not available for wasm, android and ios platforms")
initAll()
return()
endif()
if (${QT_VERSION_MAJOR} LESS 6)
message(WARNING "CQtDeployer tests is not available for qt5. Please build cqtdeployer with qt6")
set(CQT_DEPLOYER_TESTS OFF CACHE BOOL "This option force disbled for ANDROID IOS QA_WASM32 and Not Qt projects" FORCE)
set(CQT_DEPLOYER_TESTS OFF CACHE BOOL "This option force disabled for ANDROID IOS QA_WASM32 and Not Qt projects" FORCE)
endif()
make_directory(Distro)