From 0e0af7effaa27eed83512e98618d796563530b01 Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Mon, 26 Apr 2021 09:20:56 +0100 Subject: [PATCH] Allow building with older cmake versions Change-Id: I74afe9eee8e57ea2739971cf04bded17df781c8e --- build/tizen/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/tizen/CMakeLists.txt b/build/tizen/CMakeLists.txt index 906453d..1308a3f 100644 --- a/build/tizen/CMakeLists.txt +++ b/build/tizen/CMakeLists.txt @@ -297,11 +297,11 @@ SET(SHADER_GENERATOR_SOURCES ${ROOT_SRC_DIR}/dali-toolkit/shader-generator/shade IF(NOT ANDROID) ADD_EXECUTABLE(${SHADER_GENERATOR_NAME} ${SHADER_GENERATOR_SOURCES}) - INSTALL(TARGETS ${SHADER_GENERATOR_NAME} DESTINATION ${BINDIR}) + INSTALL(TARGETS ${SHADER_GENERATOR_NAME} RUNTIME DESTINATION bin) ELSE() # Need to build dali-shader-generator using the host compiler, not the android cross-compiler so # that it can be run on the host machine - OPTION(ANDROID_HOST_COMPILER "Provide the host compiler used by Android (Mandatory for Android") + OPTION(ANDROID_HOST_COMPILER "Provide the host compiler used by Android (Mandatory)") IF(${ANDROID_HOST_COMPILER} STREQUAL "OFF") MESSAGE(FATAL_ERROR "-DANDROID_HOST_COMPILER=\"Compiler\" must be set") ENDIF() -- 2.7.4