-
Notifications
You must be signed in to change notification settings - Fork 51
CMake: Add CMakeLists.txt #284
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# Copyright (c) 2020 Arm Limited. All rights reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the License); you may | ||
# not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an AS IS BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
language: sh | ||
os: linux | ||
dist: xenial | ||
|
||
env: | ||
global: | ||
- PROFILE=develop | ||
|
||
cache: | ||
pip: true | ||
ccache: true | ||
# It looks like ccache for arm-none-eabi is not yet supported by Travis. | ||
# Therefore manually adding ccache directory to cache | ||
directories: | ||
- ${HOME}/.ccache | ||
|
||
addons: | ||
apt: | ||
sources: | ||
- sourceline: 'deb https://apt.kitware.com/ubuntu/ xenial main' | ||
key_url: 'https://apt.kitware.com/keys/kitware-archive-latest.asc' | ||
- sourceline: 'deb https://apt.kitware.com/ubuntu/ xenial-rc main' | ||
packages: | ||
- cmake | ||
- ninja-build | ||
|
||
matrix: | ||
include: | ||
|
||
- &cmake-build-test | ||
stage: "CMake" | ||
name: "CMake tls example - develop (K64F)" | ||
env: NAME=cmake_test TARGET_NAME=K64F PROFILE=develop CACHE_NAME=develop-K64F | ||
language: python | ||
python: 3.8 | ||
install: | ||
# Setup ccache | ||
- ccache -o compiler_check=content | ||
- ccache -M 1G | ||
- pushd /usr/lib/ccache | ||
- sudo ln -s ../../bin/ccache arm-none-eabi-gcc | ||
- sudo ln -s ../../bin/ccache arm-none-eabi-g++ | ||
- export PATH="/usr/lib/ccache:$PATH" | ||
- popd | ||
# Install arm-none-eabi-gcc | ||
- pushd /home/travis/build && mkdir arm-gcc && cd arm-gcc | ||
- curl -L0 "https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2020q2/gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2?revision=05382cca-1721-44e1-ae19-1e7c3dc96118&la=en&hash=D7C9D18FCA2DD9F894FD9F3C3DC9228498FA281A" --output gcc-arm-none-eabi-9-2020-q2-update.tar.bz2 | ||
- tar xf gcc-arm-none-eabi-9-2020-q2-update.tar.bz2 | ||
- export PATH="$PATH:${PWD}/gcc-arm-none-eabi-9-2020-q2-update/bin" | ||
- popd | ||
- arm-none-eabi-gcc --version | ||
# Hide Travis-preinstalled CMake | ||
# The Travis-preinstalled CMake is unfortunately not installed via apt, so we | ||
# can't replace it with an apt-supplied version very easily. Additionally, we | ||
# can't permit the Travis-preinstalled copy to survive, as the Travis default | ||
# path lists the Travis CMake install location ahead of any place where apt | ||
# would install CMake to. Instead of apt removing or upgrading to a new CMake | ||
# version, we must instead delete the Travis copy of CMake. | ||
- sudo rm -rf /usr/local/cmake* | ||
- pip install --upgrade mbed-tools | ||
- pip install prettytable==0.7.2 | ||
- pip install future==0.16.0 | ||
- pip install "Jinja2>=2.10.1,<2.11" | ||
- pip install "intelhex>=1.3,<=2.2.1" | ||
script: | ||
- examples=( authcrypt benchmark hashing tls-client ) ; | ||
- for i in "${examples[@]}" ; do cd $i ; echo cd $i ; mbedtools checkout ; echo mbedtools build -t GCC_ARM -m ${TARGET_NAME} -b ${PROFILE} ; mbedtools build -t GCC_ARM -m ${TARGET_NAME} -b ${PROFILE} || exit 1 ; cd .. ; done | ||
- ccache -s | ||
|
||
- <<: *cmake-build-test | ||
name: "CMake TLS example - release (K64F)" | ||
env: NAME=cmake_test TARGET_NAME=K64F PROFILE=release CACHE_NAME=release-K64F | ||
|
||
- <<: *cmake-build-test | ||
name: "CMake TLS example - debug (K64F)" | ||
env: NAME=cmake_test TARGET_NAME=K64F PROFILE=debug CACHE_NAME=debug-K64F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Copyright (c) 2020 ARM Limited. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
cmake_minimum_required(VERSION 3.19.0 FATAL_ERROR) | ||
|
||
set(MBED_PATH ${CMAKE_CURRENT_SOURCE_DIR}/mbed-os CACHE INTERNAL "") | ||
set(MBED_CONFIG_PATH ${CMAKE_CURRENT_SOURCE_DIR}/.mbedbuild CACHE INTERNAL "") | ||
set(APP_TARGET authcrypt) | ||
|
||
include(${MBED_PATH}/tools/cmake/app.cmake) | ||
|
||
add_subdirectory(${MBED_PATH}) | ||
|
||
add_executable(${APP_TARGET}) | ||
|
||
mbed_configure_app_target(${APP_TARGET}) | ||
|
||
mbed_set_mbed_target_linker_script(${APP_TARGET}) | ||
|
||
project(${APP_TARGET}) | ||
|
||
target_include_directories(${APP_TARGET} | ||
PRIVATE | ||
. | ||
) | ||
|
||
target_sources(${APP_TARGET} | ||
PRIVATE | ||
authcrypt.cpp | ||
main.cpp | ||
) | ||
|
||
target_link_libraries(${APP_TARGET} | ||
PRIVATE | ||
mbed-os | ||
mbed-mbedtls | ||
) | ||
|
||
mbed_set_post_build(${APP_TARGET}) | ||
|
||
option(VERBOSE_BUILD "Have a verbose build process") | ||
if(VERBOSE_BUILD) | ||
set(CMAKE_VERBOSE_MAKEFILE ON) | ||
endif() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
https://github.com/ARMmbed/mbed-os/#f2278567d09b9ae9f4843e1d9d393526b9462783 | ||
https://github.com/ARMmbed/mbed-os/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Copyright (c) 2020 ARM Limited. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
cmake_minimum_required(VERSION 3.19.0 FATAL_ERROR) | ||
|
||
set(MBED_PATH ${CMAKE_CURRENT_SOURCE_DIR}/mbed-os CACHE INTERNAL "") | ||
set(MBED_CONFIG_PATH ${CMAKE_CURRENT_SOURCE_DIR}/.mbedbuild CACHE INTERNAL "") | ||
set(APP_TARGET benchmark) | ||
|
||
include(${MBED_PATH}/tools/cmake/app.cmake) | ||
|
||
add_subdirectory(${MBED_PATH}) | ||
|
||
add_executable(${APP_TARGET}) | ||
|
||
mbed_configure_app_target(${APP_TARGET}) | ||
|
||
mbed_set_mbed_target_linker_script(${APP_TARGET}) | ||
|
||
project(${APP_TARGET}) | ||
|
||
target_include_directories(${APP_TARGET} | ||
PRIVATE | ||
. | ||
) | ||
|
||
target_sources(${APP_TARGET} | ||
PRIVATE | ||
main.cpp | ||
) | ||
|
||
target_link_libraries(${APP_TARGET} | ||
PRIVATE | ||
mbed-os | ||
mbed-mbedtls | ||
) | ||
|
||
mbed_set_post_build(${APP_TARGET}) | ||
|
||
option(VERBOSE_BUILD "Have a verbose build process") | ||
if(VERBOSE_BUILD) | ||
set(CMAKE_VERBOSE_MAKEFILE ON) | ||
endif() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
https://github.com/ARMmbed/mbed-os/#f2278567d09b9ae9f4843e1d9d393526b9462783 | ||
https://github.com/ARMmbed/mbed-os/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright (c) 2020 ARM Limited. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
cmake_minimum_required(VERSION 3.19.0 FATAL_ERROR) | ||
|
||
set(MBED_PATH ${CMAKE_CURRENT_SOURCE_DIR}/mbed-os CACHE INTERNAL "") | ||
set(MBED_CONFIG_PATH ${CMAKE_CURRENT_SOURCE_DIR}/.mbedbuild CACHE INTERNAL "") | ||
set(APP_TARGET hashing) | ||
|
||
include(${MBED_PATH}/tools/cmake/app.cmake) | ||
|
||
add_subdirectory(${MBED_PATH}) | ||
|
||
add_executable(${APP_TARGET}) | ||
|
||
mbed_configure_app_target(${APP_TARGET}) | ||
|
||
mbed_set_mbed_target_linker_script(${APP_TARGET}) | ||
|
||
project(${APP_TARGET}) | ||
|
||
|
||
target_sources(${APP_TARGET} | ||
PRIVATE | ||
main.cpp | ||
) | ||
|
||
target_link_libraries(${APP_TARGET} | ||
PRIVATE | ||
mbed-os | ||
mbed-mbedtls | ||
) | ||
|
||
mbed_set_post_build(${APP_TARGET}) | ||
|
||
option(VERBOSE_BUILD "Have a verbose build process") | ||
if(VERBOSE_BUILD) | ||
set(CMAKE_VERBOSE_MAKEFILE ON) | ||
endif() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
https://github.com/ARMmbed/mbed-os/#f2278567d09b9ae9f4843e1d9d393526b9462783 | ||
https://github.com/ARMmbed/mbed-os/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright (c) 2020 ARM Limited. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
cmake_minimum_required(VERSION 3.19.0 FATAL_ERROR) | ||
|
||
set(MBED_PATH ${CMAKE_CURRENT_SOURCE_DIR}/mbed-os CACHE INTERNAL "") | ||
set(MBED_CONFIG_PATH ${CMAKE_CURRENT_SOURCE_DIR}/.mbedbuild CACHE INTERNAL "") | ||
set(APP_TARGET benchmark) | ||
|
||
include(${MBED_PATH}/tools/cmake/app.cmake) | ||
|
||
add_subdirectory(${MBED_PATH}) | ||
|
||
add_executable(${APP_TARGET}) | ||
|
||
mbed_configure_app_target(${APP_TARGET}) | ||
|
||
mbed_set_mbed_target_linker_script(${APP_TARGET}) | ||
|
||
project(${APP_TARGET}) | ||
|
||
target_include_directories(${APP_TARGET} | ||
PRIVATE | ||
. | ||
) | ||
|
||
target_sources(${APP_TARGET} | ||
PRIVATE | ||
HelloHttpsClient.cpp | ||
main.cpp | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please fix indentation. |
||
) | ||
|
||
target_link_libraries(${APP_TARGET} | ||
PRIVATE | ||
mbed-os | ||
mbed-mbedtls | ||
mbed-netsocket | ||
) | ||
|
||
mbed_set_post_build(${APP_TARGET}) | ||
|
||
option(VERBOSE_BUILD "Have a verbose build process") | ||
if(VERBOSE_BUILD) | ||
set(CMAKE_VERBOSE_MAKEFILE ON) | ||
endif() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
https://github.com/ARMmbed/mbed-os/#f2278567d09b9ae9f4843e1d9d393526b9462783 | ||
https://github.com/ARMmbed/mbed-os/ |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix indentation.