Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
mbed-cloud-client/mbed-client-pal/Source/CMakeLists.txt@2:bf2124b482f9, 2018-07-02 (annotated)
- Committer:
- MACRUM
- Date:
- Mon Jul 02 08:06:37 2018 +0000
- Revision:
- 2:bf2124b482f9
- Parent:
- 0:276e7a263c35
Update library
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
MACRUM | 0:276e7a263c35 | 1 | include_directories(Port/Platform-API) |
MACRUM | 0:276e7a263c35 | 2 | ADD_GLOBALDIR( ${CMAKE_CURRENT_SOURCE_DIR}/PAL-Impl/Services-API) |
MACRUM | 0:276e7a263c35 | 3 | |
MACRUM | 0:276e7a263c35 | 4 | set (PAL_MODULES_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/PAL-Impl/Modules) |
MACRUM | 0:276e7a263c35 | 5 | set (PAL_PORT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/Port/Reference-Impl/OS_Specific/${OS_BRAND}) |
MACRUM | 0:276e7a263c35 | 6 | |
MACRUM | 0:276e7a263c35 | 7 | set(PAL_SRCS |
MACRUM | 0:276e7a263c35 | 8 | ${PAL_PORT_SOURCE_DIR}/Networking/${NETWORK_STACK}/pal_plat_network.c |
MACRUM | 0:276e7a263c35 | 9 | ${PAL_PORT_SOURCE_DIR}/RTOS/pal_plat_rtos.c |
MACRUM | 0:276e7a263c35 | 10 | ${PAL_PORT_SOURCE_DIR}/../../Lib_Specific/${TLS_LIBRARY}/TLS/pal_plat_TLS.c |
MACRUM | 0:276e7a263c35 | 11 | ${PAL_PORT_SOURCE_DIR}/../../Lib_Specific/${TLS_LIBRARY}/Crypto/pal_plat_Crypto.c |
MACRUM | 0:276e7a263c35 | 12 | ${PAL_PORT_SOURCE_DIR}/Update/pal_plat_update.c |
MACRUM | 0:276e7a263c35 | 13 | ${PAL_PORT_SOURCE_DIR}/Storage/FileSystem/pal_plat_fileSystem.c |
MACRUM | 0:276e7a263c35 | 14 | ${PAL_PORT_SOURCE_DIR}/Board_Specific/TARGET_${MBED_CLOUD_CLIENT_DEVICE}/pal_plat_${MBED_CLOUD_CLIENT_DEVICE}.c |
MACRUM | 0:276e7a263c35 | 15 | |
MACRUM | 0:276e7a263c35 | 16 | ${PAL_MODULES_SOURCE_DIR}/Networking/pal_network.c |
MACRUM | 0:276e7a263c35 | 17 | ${PAL_MODULES_SOURCE_DIR}/RTOS/pal_rtos.c |
MACRUM | 0:276e7a263c35 | 18 | ${PAL_MODULES_SOURCE_DIR}/TLS/pal_TLS.c |
MACRUM | 0:276e7a263c35 | 19 | ${PAL_MODULES_SOURCE_DIR}/Crypto/pal_Crypto.c |
MACRUM | 0:276e7a263c35 | 20 | ${PAL_MODULES_SOURCE_DIR}/Update/pal_update.c |
MACRUM | 0:276e7a263c35 | 21 | ${PAL_MODULES_SOURCE_DIR}/Storage/FileSystem/pal_fileSystem.c |
MACRUM | 0:276e7a263c35 | 22 | ${PAL_MODULES_SOURCE_DIR}/Storage/Flash/pal_internalFlash.c |
MACRUM | 0:276e7a263c35 | 23 | |
MACRUM | 0:276e7a263c35 | 24 | ${CMAKE_CURRENT_SOURCE_DIR}/PAL-Impl/pal_init.c |
MACRUM | 0:276e7a263c35 | 25 | ) |
MACRUM | 0:276e7a263c35 | 26 | |
MACRUM | 0:276e7a263c35 | 27 | if ( NOT (${OS_BRAND} MATCHES "Linux")) |
MACRUM | 0:276e7a263c35 | 28 | set (PAL_SRCS ${PAL_SRCS} ${PAL_PORT_SOURCE_DIR}/Storage/Flash/pal_plat_internalFlash.c) |
MACRUM | 0:276e7a263c35 | 29 | endif() |
MACRUM | 0:276e7a263c35 | 30 | |
MACRUM | 0:276e7a263c35 | 31 | CREATE_LIBRARY(pal "${PAL_SRCS}" "") |