summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Palachev <i.palachev@samsung.com>2014-03-13 15:35:02 +0400
committerIlya Palachev <i.palachev@samsung.com>2014-03-13 15:41:36 +0400
commitbc8d06b406040efb0c8a8a760b04ceb309968162 (patch)
treee38dc28594f693ea02d17bf08c113f09e912a4c0
parent622d7378746fc80eb070750cca228b175e211d3a (diff)
downloadhaptic-module-tizen-accepted/tizen_wearable.tar.gz
haptic-module-tizen-accepted/tizen_wearable.tar.bz2
haptic-module-tizen-accepted/tizen_wearable.zip
Tizen toolchain team in Samsung company is planning to build Tizen for new arm 64 bit architecture - Aarch64. But package "haptic-module-tizen" cannot be built for this architecture beacase cmake build scripts do not accept aarch64 as appropriate architecture for the build. That's why it has been added to the list of architectures for which the package can be built. Change-Id: Ie915f959110bb906648ebbf8a559756cd44d6e92 Signed-off-by: Ilya Palachev <i.palachev@samsung.com>
-rwxr-xr-xCMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bc6d74a..28731ac 100755
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,6 +19,8 @@ ELSEIF("${ARCH}" MATCHES "^arm.*")
SET(TIZEN_TARGET "DEVICE")
ELSEIF("${ARCH}" MATCHES ".*86.*")
SET(TIZEN_TARGET "DEVICE")
+ELSEIF("${ARCH}" MATCHES "aarch64")
+ SET(TIZEN_TARGET "DEVICE")
ELSE("${SIMULATOR}" MATCHES "yes")
MESSAGE(SEND_ERROR "Unknown architecture: ${ARCH}")
ENDIF("${SIMULATOR}" MATCHES "yes")