Home
last modified time | relevance | path

Searched full:cmake (Results 1 – 25 of 62) sorted by relevance

123

/openthread-2.7.6/script/
Dcmake-build31 # This script calls cmake and ninja to compile OpenThread for the given platform.
35 # script/cmake-build ${platform}
39 # script/cmake-build ${platform} -D${option}=ON
43 # script/cmake-build ${platform} -D${option}=OFF
47 # OT_CMAKE_NINJA_TARGET="ot-cli-ftd" script/cmake-build ${platform}
51 # OT_CMAKE_BUILD_DIR="./build/temp" script/cmake-build ${platform}
55 # script/cmake-build simulation
57 # script/cmake-build simulation -DOT_FULL_LOGS=ON -DOT_CHANNEL_MANAGER=OFF
59 # OT_CMAKE_NINJA_TARGET="ot-cli-mtd" OT_CMAKE_BUILD_DIR="./build/temp" script/cmake-build simu…
107 echo " ** ERROR: Openthread CMake doesn't support platform \"$1\""
[all …]
Dcheck-simulation-build-cmake43 "$(dirname "$0")"/cmake-build simulation -DOT_THREAD_VERSION=1.1
47 …"$(dirname "$0")"/cmake-build simulation -DOT_OTNS=ON -DOT_SIMULATION_VIRTUAL_TIME=ON -DOT_THREAD_…
51 …"$(dirname "$0")"/cmake-build simulation -DOT_OTNS=ON -DOT_SIMULATION_VIRTUAL_TIME=ON -DOT_THREAD_…
55 …"$(dirname "$0")"/cmake-build simulation -DOT_OTNS=ON -DOT_SIMULATION_VIRTUAL_TIME=ON -DOT_THREAD_…
59 …"$(dirname "$0")"/cmake-build simulation -DOT_THREAD_VERSION=1.1 -DOT_VENDOR_EXTENSION=../../src/c…
63 "$(dirname "$0")"/cmake-build simulation -DOT_THREAD_VERSION=1.2
67 …"$(dirname "$0")"/cmake-build simulation -DOT_OTNS=ON -DOT_SIMULATION_VIRTUAL_TIME=ON -DOT_THREAD_…
73 top_builddir="$OT_BUILDDIR" ./tests/toranj/build.sh cmake
Dpackage47 …OT_CMAKE_NINJA_TARGET="package" OT_CMAKE_BUILD_DIR="${builddir}" ./script/cmake-build simulation "…
51 …OT_CMAKE_NINJA_TARGET="package" OT_CMAKE_BUILD_DIR="${builddir}" ./script/cmake-build posix "${opt…
55 …OT_CMAKE_NINJA_TARGET="package" OT_CMAKE_BUILD_DIR="${builddir}" ./script/cmake-build posix "${opt…
Dcheck-posix-build35 "$(dirname "$0")"/check-posix-build-cmake
36 "$(dirname "$0")"/check-posix-build-cmake -DOT_DAEMON=ON
Dcheck-posix-build-cmake47 "$(dirname "$0")"/cmake-build posix "${options[@]}"
54 "$(dirname "$0")"/cmake-build posix "${options[@]}"
/openthread-2.7.6/third_party/mbedtls/repo/
DREADME.md13 …l environment variables such as `CC` and `CFLAGS` when using the Make and CMake build system (see …
34 - CMake
37 …lopment are CMake and GNU Make. Those systems are always complete and up-to-date. The others shoul…
39 The Make and CMake build systems create three libraries: libmbedcrypto, libmbedx509, and libmbedtls…
45 * GNU Make or a build tool that CMake supports.
54 …easily move between different platforms. Users who need more features are recommended to use CMake.
82 ### CMake subsection
84 In order to build the source using CMake in a separate directory (recommended), just enter at the c…
87 cmake /path/to/mbedtls_source
88 cmake --build .
[all …]
D.gitignore4 # CMake build artifacts:
7 CTestTestfile.cmake
8 cmake_install.cmake
10 # CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
12 # MSVC files generated by CMake:
34 # CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
37 # Microsoft CMake extension for Visual Studio Code generates a build directory by default
DCMakeLists.txt2 # CMake build system design considerations:
14 # CMake files. It is related to ZLIB support which is planned to be removed.
17 # - MBEDTLS_TARGET_PREFIX: CMake targets are designed to be alterable by calling
18 # CMake in order to avoid target name clashes, via the use of
53 # Warning string - created as a list for compatibility with CMake 2.8
110 To confirm you want to build with this option, re-run cmake with the \
112 cmake -DUNSAFE_BUILD=ON ")
166 # note: starting with CMake 2.8 we could use CMAKE_C_COMPILER_VERSION
266 # Thus the below definition of the `mbedtls_test` CMake library of objects
267 # target. This library of objects is used by tests and programs CMake files
/openthread-2.7.6/
DCMakeLists.txt61 include("${PROJECT_SOURCE_DIR}/etc/cmake/checks.cmake")
62 include("${PROJECT_SOURCE_DIR}/etc/cmake/options.cmake")
63 include("${PROJECT_SOURCE_DIR}/etc/cmake/functions.cmake")
66 # Check if this is a top-level CMake.
74 message(STATUS "OpenThread CMake build type: ${CMAKE_BUILD_TYPE}")
159 # When not specified by user (value is ""), a platform cmake file may
165 list(APPEND OT_PUBLIC_INCLUDES ${PROJECT_BINARY_DIR}/etc/cmake)
166 list(APPEND OT_PUBLIC_INCLUDES ${PROJECT_SOURCE_DIR}/etc/cmake)
212 -P ${PROJECT_SOURCE_DIR}/etc/cmake/print.cmake
D.gitignore35 cmake_install.cmake
41 etc/cmake/openthread-config-generic.h
66 cmake-build-*/**
/openthread-2.7.6/etc/cmake/
Dprint.cmake30 # Purpose of this CMake script is to support printing of properties fetched
35 # The print.cmake handles this issue by taking a CMake list and prints each item
38 # This script can be invoked as: `cmake -DLIST="itemA;itemB;..." -P print.cmake`
Dchecks.cmake29 configure_file(${PROJECT_SOURCE_DIR}/etc/cmake/openthread-config-generic.h.in ${PROJECT_BINARY_DIR}…
/openthread-2.7.6/third_party/mbedtls/repo/tests/scripts/
Dall.sh35 # configurations, and can and will arbitrarily change the current CMake
40 # After running this script, the CMake cache will be lost and CMake
48 # * CMake
92 # This cleans up after an in-tree use of CMake.
170 # Include more verbose output for failing tests run by CMake
173 # CFLAGS and LDFLAGS for Asan builds that don't use CMake
242 --out-of-source-dir=<path> Directory used for CMake out-of-source build tests.
262 # remove built files as well as the cmake cache/config
271 # Remove CMake artefacts
274 \( -iname cmake_install.cmake -o \
[all …]
/openthread-2.7.6/third_party/mbedtls/repo/configs/
DREADME.txt19 Or, using cmake:
21 find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} +
22 CFLAGS="-I$PWD/configs -DMBEDTLS_CONFIG_FILE='<foo.h>'" cmake .
/openthread-2.7.6/examples/apps/ncp/
DCMakeLists.txt37 include(ftd.cmake)
40 include(mtd.cmake)
46 include(rcp.cmake)
/openthread-2.7.6/third_party/mbedtls/repo/scripts/
Decc-heap.sh7 # cmake -D CMAKE_BUILD_TYPE=Release .
34 if grep -i cmake Makefile >/dev/null; then :; else
35 echo "Needs Cmake" >&2
/openthread-2.7.6/src/ncp/
DCMakeLists.txt62 include(ftd.cmake)
66 include(mtd.cmake)
70 include(radio.cmake)
/openthread-2.7.6/tests/toranj/
Dbuild.sh46 …echo " cmake : Configure and build OpenThread using cmake/ninja (RCP and NCP) onl…
47 echo " cmake-posix: : Configure and build OpenThread POSIX using cmake/ninja"
265 cmake)
267 … echo "Building OpenThread (NCP/CLI for FTD/MTD/RCP mode) with simulation platform using cmake"
270 cmake -GNinja -DOT_PLATFORM=simulation -DOT_COMPILE_WARNING_AS_ERROR=on -DOT_APP_CLI=on \
276 cmake-posix-host | cmake-posix | cmake-p)
278 echo "Building OpenThread POSIX using cmake"
281 cmake -GNinja -DOT_PLATFORM=posix -DOT_COMPILE_WARNING_AS_ERROR=on -DOT_APP_CLI=off \
/openthread-2.7.6/etc/docker/environment/
DDockerfile19 && python3 -m pip install -U cmake \
30 && cmake -GNinja -DOT_PLATFORM=simulation .. \
/openthread-2.7.6/examples/platforms/simulation/
DREADME.md19 ### Build using cmake/ninja
24 $ cmake -GNinja -DOT_PLATFORM=simulation ..
/openthread-2.7.6/src/posix/
DREADME.md22 ./script/cmake-build posix
37 ./script/cmake-build simulation -DOT_APP_CLI=OFF -DOT_APP_NCP=OFF -DOT_FTD=OFF -DOT_MTD=OFF
141 ./script/cmake-build cc2538 -DOT_APP_CLI=OFF -DOT_APP_NCP=OFF -DOT_FTD=OFF -DOT_MTD=OFF
164 ./script/cmake-build posix -DOT_DAEMON=ON
/openthread-2.7.6/third_party/mbedtls/repo/programs/test/cmake_subproject/
Dcmake_subproject.c2 * Simple program to test that CMake builds with Mbed TLS as a subdirectory
41 /* The main reason to build this is for testing the CMake build, so the program
/openthread-2.7.6/examples/apps/cli/
DCMakeLists.txt36 include(ftd.cmake)
40 include(mtd.cmake)
/openthread-2.7.6/.github/workflows/
Dbuild.yml68 cmake-version:
76 sudo pip3 install --system -U cmake==3.10.3
77 cmake --version | grep 3.10.3
156 # use the minimal required cmake version
157 sudo pip3 install --system -U cmake==3.10.3
158 cmake --version | grep 3.10.3
/openthread-2.7.6/src/cli/
DCMakeLists.txt50 include(ftd.cmake)
54 include(mtd.cmake)

123