From: wn.jang Date: Tue, 25 Jul 2023 11:54:36 +0000 (+0900) Subject: Add library to support riscv64 build X-Git-Tag: accepted/tizen/unified/riscv/20231229.084417^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Faccepted%2Ftizen_unified;p=platform%2Fcore%2Fuifw%2Fwakeup-engine-default.git Add library to support riscv64 build Change-Id: I8b004972bdb2d0ac595dbb45a3cca9d3d24da80f --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 7696e98..c60de8a 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,4 +22,7 @@ INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/aarch64/libwakeup-engine.so ELSEIF("${ARCH}" MATCHES "^x86_64.*") INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/x86_64/libwakeup-engine.so DESTINATION /usr/share/multiassistant/engines/wakeup-engine-default) +ELSEIF("${ARCH}" MATCHES "^riscv64.*") +INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/riscv64/libwakeup-engine.so + DESTINATION /usr/share/multiassistant/engines/wakeup-engine-default) ENDIF() diff --git a/lib/riscv64/libwakeup-engine.so b/lib/riscv64/libwakeup-engine.so new file mode 100644 index 0000000..a084f63 Binary files /dev/null and b/lib/riscv64/libwakeup-engine.so differ