Lines Matching refs:library
7 For example, the prebuilt library **libavcodec_ffmpeg.so** is located in the following directory du…
13 …information such as the path to the prebuilt library. Then you can declare the link to the prebuil…
17 add_library(library SHARED hello.cpp)
24 target_link_libraries(library PUBLIC libace_napi.z.so avcodec_ffmpeg)
34 To use the prebuilt library integrated in a remote dependency HAR, write the reference script in th…
39 add_library(library SHARED IMPORTED)
40 set_target_properties(library
42 IMPORTED_LOCATION ${DEPENDENCY_PATH}/library/libs/${OHOS_ARCH}/liblibrary.so)
44 target_link_libraries(entry PUBLIC libace_napi.z.so library)
48 To use the prebuilt library integrated in a local HAR, write the reference script in the **CMakeLis…
52 set(LIBRARY_DIR "${NATIVERENDER_ROOT_PATH}/../../../../library/build/default/intermediates/libs/def…
53 add_library(library SHARED IMPORTED)
54 set_target_properties(library