diff options
author | Stephan Sundermann <stephansundermann@gmail.com> | 2023-10-10 22:11:04 +0200 |
---|---|---|
committer | Stephan Sundermann <stephansundermann@gmail.com> | 2023-10-11 16:44:11 +0200 |
commit | e4a4b8ead4cee9bc4c9f54e7b6f57217ef4d31c3 (patch) | |
tree | 268faa418b8a5d98f002df69116dd059183f8d5d /cmake/scripts | |
parent | 87ec6401dfa38eec0129ae5883b297df807962a8 (diff) |
[webOS] Acb: Install empty dummy library
Diffstat (limited to 'cmake/scripts')
-rw-r--r-- | cmake/scripts/webos/Install.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/scripts/webos/Install.cmake b/cmake/scripts/webos/Install.cmake index fde84c1479..03dd7ce183 100644 --- a/cmake/scripts/webos/Install.cmake +++ b/cmake/scripts/webos/Install.cmake @@ -30,7 +30,7 @@ set(APP_INSTALL_DIRS ${CMAKE_BINARY_DIR}/addons ${CMAKE_BINARY_DIR}/userdata) set(APP_TOOLCHAIN_FILES ${TOOLCHAIN}/${HOST}/sysroot/lib/libatomic.so.1 ${TOOLCHAIN}/${HOST}/sysroot/lib/libcrypt.so.1 - ${DEPENDS_PATH}/lib/libAcbAPI.so.1) + ${CMAKE_BINARY_DIR}/libAcbAPI.so.1) set(BIN_ADDONS_DIR ${DEPENDS_PATH}/addons) file(WRITE ${CMAKE_BINARY_DIR}/install.cmake " @@ -54,7 +54,7 @@ file(WRITE ${CMAKE_BINARY_DIR}/install.cmake " # Copy files to the location expected by the webOS packaging scripts. add_custom_target(bundle - DEPENDS ${APP_NAME_LC} ${CMAKE_BINARY_DIR}/missing_libs.txt + DEPENDS ${APP_NAME_LC} ${CMAKE_BINARY_DIR}/missing_libs.txt AcbAPI COMMAND ${CMAKE_COMMAND} -P ${CMAKE_BINARY_DIR}/install.cmake ) |