Home
last modified time | relevance | path

Searched refs:LIBRARY_DIR (Results 1 – 22 of 22) sorted by relevance

/external/tensorflow/tensorflow/lite/micro/tools/make/
Dfix_arduino_subfolders_test.sh21 LIBRARY_DIR=${TEST_TMPDIR}/library
22 mkdir -p ${LIBRARY_DIR}
24 EXAMPLES_SUBDIR_CPP=${LIBRARY_DIR}/examples/something/foo/fish.cpp
28 EXAMPLES_SUBDIR_HEADER=${LIBRARY_DIR}/examples/something/foo/fish.h
32 TENSORFLOW_SRC_DIR=${LIBRARY_DIR}/src/
36 mkdir -p ${LIBRARY_DIR}/examples/person_detection
38 EXAMPLE_INO_FILE=${LIBRARY_DIR}/examples/something/main.ino
43 ${LIBRARY_DIR}
45 EXPECTED_EXAMPLES_SUBDIR_CPP=${LIBRARY_DIR}/examples/something/foo_fish.cpp
51 EXPECTED_EXAMPLES_SUBDIR_HEADER=${LIBRARY_DIR}/examples/something/foo_fish.h
[all …]
/external/llvm-project/libunwind/cmake/Modules/
DHandleCompilerRT.cmake41 OUTPUT_VARIABLE LIBRARY_DIR
43 string(STRIP "${LIBRARY_DIR}" LIBRARY_DIR)
44 file(TO_CMAKE_PATH "${LIBRARY_DIR}" LIBRARY_DIR)
45 set(LIBRARY_DIR "${LIBRARY_DIR}/darwin") variable
56 get_filename_component(LIBRARY_DIR "${LIBRARY_FILE}" DIRECTORY)
58 if (NOT HAD_ERROR AND EXISTS "${LIBRARY_DIR}")
59 message(STATUS "Found compiler-rt directory: ${LIBRARY_DIR}")
60 set(${dest} "${LIBRARY_DIR}" PARENT_SCOPE)
/external/libcxx/cmake/Modules/
DHandleCompilerRT.cmake41 OUTPUT_VARIABLE LIBRARY_DIR
43 string(STRIP "${LIBRARY_DIR}" LIBRARY_DIR)
44 file(TO_CMAKE_PATH "${LIBRARY_DIR}" LIBRARY_DIR)
45 set(LIBRARY_DIR "${LIBRARY_DIR}/darwin") variable
56 get_filename_component(LIBRARY_DIR "${LIBRARY_FILE}" DIRECTORY)
58 if (NOT HAD_ERROR AND EXISTS "${LIBRARY_DIR}")
59 message(STATUS "Found compiler-rt directory: ${LIBRARY_DIR}")
60 set(${dest} "${LIBRARY_DIR}" PARENT_SCOPE)
/external/libcxxabi/cmake/Modules/
DHandleCompilerRT.cmake41 OUTPUT_VARIABLE LIBRARY_DIR
43 string(STRIP "${LIBRARY_DIR}" LIBRARY_DIR)
44 file(TO_CMAKE_PATH "${LIBRARY_DIR}" LIBRARY_DIR)
45 set(LIBRARY_DIR "${LIBRARY_DIR}/darwin") variable
56 get_filename_component(LIBRARY_DIR "${LIBRARY_FILE}" DIRECTORY)
58 if (NOT HAD_ERROR AND EXISTS "${LIBRARY_DIR}")
59 message(STATUS "Found compiler-rt directory: ${LIBRARY_DIR}")
60 set(${dest} "${LIBRARY_DIR}" PARENT_SCOPE)
/external/llvm-project/libcxxabi/cmake/Modules/
DHandleCompilerRT.cmake41 OUTPUT_VARIABLE LIBRARY_DIR
43 string(STRIP "${LIBRARY_DIR}" LIBRARY_DIR)
44 file(TO_CMAKE_PATH "${LIBRARY_DIR}" LIBRARY_DIR)
45 set(LIBRARY_DIR "${LIBRARY_DIR}/darwin") variable
56 get_filename_component(LIBRARY_DIR "${LIBRARY_FILE}" DIRECTORY)
58 if (NOT HAD_ERROR AND EXISTS "${LIBRARY_DIR}")
59 message(STATUS "Found compiler-rt directory: ${LIBRARY_DIR}")
60 set(${dest} "${LIBRARY_DIR}" PARENT_SCOPE)
/external/llvm-project/libcxx/cmake/Modules/
DHandleCompilerRT.cmake41 OUTPUT_VARIABLE LIBRARY_DIR
43 string(STRIP "${LIBRARY_DIR}" LIBRARY_DIR)
44 file(TO_CMAKE_PATH "${LIBRARY_DIR}" LIBRARY_DIR)
45 set(LIBRARY_DIR "${LIBRARY_DIR}/darwin") variable
56 get_filename_component(LIBRARY_DIR "${LIBRARY_FILE}" DIRECTORY)
58 if (NOT HAD_ERROR AND EXISTS "${LIBRARY_DIR}")
59 message(STATUS "Found compiler-rt directory: ${LIBRARY_DIR}")
60 set(${dest} "${LIBRARY_DIR}" PARENT_SCOPE)
/external/zstd/build/cmake/lib/
DCMakeLists.txt21 include_directories(${LIBRARY_DIR} ${LIBRARY_DIR}/common)
23 file(GLOB CommonSources ${LIBRARY_DIR}/common/*.c)
24 file(GLOB CompressSources ${LIBRARY_DIR}/compress/*.c)
25 file(GLOB DecompressSources ${LIBRARY_DIR}/decompress/*.c)
26 file(GLOB DictBuilderSources ${LIBRARY_DIR}/dictBuilder/*.c)
27 file(GLOB DeprecatedSources ${LIBRARY_DIR}/deprecated/*.c)
36 file(GLOB CommonHeaders ${LIBRARY_DIR}/common/*.h)
37 file(GLOB CompressHeaders ${LIBRARY_DIR}/compress/*.h)
38 file(GLOB DecompressHeaders ${LIBRARY_DIR}/decompress/*.h)
39 file(GLOB DictBuilderHeaders ${LIBRARY_DIR}/dictBuilder/*.h)
[all …]
/external/zstd/build/cmake/contrib/gen_html/
DCMakeLists.txt16 set(LIBRARY_DIR ${ZSTD_SOURCE_DIR}/lib) variable
20 include_directories(${PROGRAMS_DIR} ${LIBRARY_DIR} ${LIBRARY_DIR}/common ${GENHTML_DIR})
24 GetZstdLibraryVersion(${LIBRARY_DIR}/zstd.h VMAJOR VMINOR VRELEASE)
27 … ${GENHTML_BINARY} "${LIBVERSION}" "${LIBRARY_DIR}/zstd.h" "${PROJECT_BINARY_DIR}/zstd_manual.html"
/external/zstd/build/cmake/programs/
DCMakeLists.txt15 set(LIBRARY_DIR ${ZSTD_SOURCE_DIR}/lib) variable
17 include_directories(${PROGRAMS_DIR} ${LIBRARY_DIR} ${LIBRARY_DIR}/common ${LIBRARY_DIR}/compress ${
21 include_directories(${PROGRAMS_LEGACY_DIR} ${LIBRARY_DIR}/legacy)
/external/zstd/build/cmake/contrib/pzstd/
DCMakeLists.txt15 set(LIBRARY_DIR ${ZSTD_SOURCE_DIR}/lib) variable
18 include_directories(${PROGRAMS_DIR} ${LIBRARY_DIR} ${LIBRARY_DIR}/common ${PZSTD_DIR})
/external/zstd/build/cmake/tests/
DCMakeLists.txt48 set(LIBRARY_DIR ${ZSTD_SOURCE_DIR}/lib) variable
51 …ectories(${TESTS_DIR} ${PROGRAMS_DIR} ${LIBRARY_DIR} ${LIBRARY_DIR}/common ${LIBRARY_DIR}/compress…
/external/llvm-project/llvm/unittests/Support/DynamicLibrary/
DCMakeLists.txt15 LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}
32 LIBRARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}
/external/llvm-project/lldb/unittests/tools/lldb-server/
DCMakeLists.txt7 set_output_directory(${test_name} BINARY_DIR ${outdir} LIBRARY_DIR ${outdir})
/external/libchrome/base/android/java/src/org/chromium/base/library_loader/
DLibraryLoader.java82 private static final String LIBRARY_DIR = "native_libraries"; field in LibraryLoader
763 File libDir = new File(cacheDir, LIBRARY_DIR); in makeLibraryDirAndSetPermission()
775 ContextCompat.getCodeCacheDir(ContextUtils.getApplicationContext()), LIBRARY_DIR); in getLibraryDir()
/external/llvm-project/llvm/unittests/Passes/
DCMakeLists.txt30 LIBRARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}
/external/zstd/build/cmake/
DCMakeLists.txt30 set(LIBRARY_DIR ${ZSTD_SOURCE_DIR}/lib) variable
33 GetZstdLibraryVersion(${LIBRARY_DIR}/zstd.h zstd_VERSION_MAJOR zstd_VERSION_MINOR zstd_VERSION_PATC…
/external/llvm-project/lldb/cmake/modules/
DLLDBFramework.cmake43 LIBRARY_DIR ${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}
/external/llvm-project/compiler-rt/cmake/Modules/
DCompilerRTUtils.cmake233 list(GET CONFIG_OUTPUT 2 LIBRARY_DIR)
238 set(LLVM_LIBRARY_DIR ${LIBRARY_DIR} CACHE PATH "Path to llvm/lib")
/external/llvm/cmake/modules/
DAddLLVM.cmake196 cmake_parse_arguments(ARG "" "BINARY_DIR;LIBRARY_DIR" "" ${ARGN})
419 …set_output_directory(${name} BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR} LIBRARY_DIR ${LLVM_LIBRARY_O…
664 …set_output_directory(${name} BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR} LIBRARY_DIR ${LLVM_LIBRARY_O…
968 set_output_directory(${test_name} BINARY_DIR ${outdir} LIBRARY_DIR ${outdir})
/external/llvm-project/clang/
DCMakeLists.txt51 list(GET CONFIG_OUTPUT 2 LIBRARY_DIR)
79 set(LIBRARY_DIR ${LLVM_LIBRARY_DIR}) variable
90 set(LLVM_LIBRARY_DIR ${LIBRARY_DIR} CACHE PATH "Path to llvm/lib")
/external/clang/
DCMakeLists.txt40 list(GET CONFIG_OUTPUT 2 LIBRARY_DIR)
53 set(LLVM_LIBRARY_DIR ${LIBRARY_DIR} CACHE PATH "Path to llvm/lib")
/external/llvm-project/llvm/cmake/modules/
DAddLLVM.cmake268 cmake_parse_arguments(ARG "" "BINARY_DIR;LIBRARY_DIR" "" ${ARGN})
538 …set_output_directory(${name} BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR} LIBRARY_DIR ${LLVM_LIBRARY_O…
904 …set_output_directory(${name} BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR} LIBRARY_DIR ${LLVM_LIBRARY_O…
1454 set_output_directory(${test_name} BINARY_DIR ${outdir} LIBRARY_DIR ${outdir})
1486 set_output_directory(${benchmark_name} BINARY_DIR ${outdir} LIBRARY_DIR ${outdir})