From 975c1656a77f314b4e878af9492ba20473c98ceb Mon Sep 17 00:00:00 2001 From: EndrII Date: Tue, 20 Apr 2021 11:38:35 +0300 Subject: [PATCH] fix crossplatform module --- crossplatform/crossplatform.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crossplatform/crossplatform.cmake b/crossplatform/crossplatform.cmake index 0554ad7..f21993b 100755 --- a/crossplatform/crossplatform.cmake +++ b/crossplatform/crossplatform.cmake @@ -28,7 +28,7 @@ endif() # * deployFile - This is path to the deploy file of the cqtdepoyer tool. Use it for deploy your site. if (NOT DEFINED TARGET_PLATFORM_TOOLCHAIN) - message( STATUS "The crossplatform build is disabled") + message(STATUS "The crossplatform build is disabled") return() endif() @@ -38,9 +38,9 @@ set(CROSSPLATFORM_BUILD_TOOLCHAIN_PATH ${CMAKE_CURRENT_LIST_DIR}/${CMAKE_HOST_SY message("CROSSPLATFORM_BUILD_TOOLCHAIN_PATH = ${CROSSPLATFORM_BUILD_TOOLCHAIN_PATH}") if(EXISTS ${CROSSPLATFORM_BUILD_TOOLCHAIN_PATH}) - message( STATUS "${TARGET_PLATFORM_TOOLCHAIN} exits in ${CROSSPLATFORM_BUILD_TOOLCHAIN_PATH}") + message(STATUS "${TARGET_PLATFORM_TOOLCHAIN} exits in ${CROSSPLATFORM_BUILD_TOOLCHAIN_PATH}") - include( STATUS ${CROSSPLATFORM_BUILD_TOOLCHAIN_PATH}) + include("${CROSSPLATFORM_BUILD_TOOLCHAIN_PATH}") else(EXISTS ${CROSSPLATFORM_BUILD_TOOLCHAIN_PATH}) message(STATUS "${TARGET_PLATFORM_TOOLCHAIN} not exits in ${CROSSPLATFORM_BUILD_TOOLCHAIN_PATH}")