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.
Dependencies: FXAS21002 FXOS8700Q
simple-mbed-cloud-client/mbed-cloud-client/certificate-enrollment-client/CMakeLists.txt@2:990c985a69ae, 2020-03-20 (annotated)
- Committer:
- vithyat
- Date:
- Fri Mar 20 20:15:18 2020 +0000
- Revision:
- 2:990c985a69ae
- Parent:
- 0:977e87915078
Update to work with P2Scan runtime
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| vithyat | 0:977e87915078 | 1 | cmake_minimum_required(VERSION 2.6) |
| vithyat | 0:977e87915078 | 2 | project("certificate-enrollment-client") |
| vithyat | 0:977e87915078 | 3 | |
| vithyat | 0:977e87915078 | 4 | # includes |
| vithyat | 0:977e87915078 | 5 | include_directories(${CMAKE_CURRENT_SOURCE_DIR}/source/include) |
| vithyat | 0:977e87915078 | 6 | |
| vithyat | 0:977e87915078 | 7 | FILE( |
| vithyat | 0:977e87915078 | 8 | GLOB_RECURSE |
| vithyat | 0:977e87915078 | 9 | certificate_enrollment_client |
| vithyat | 0:977e87915078 | 10 | |
| vithyat | 0:977e87915078 | 11 | "${CMAKE_CURRENT_SOURCE_DIR}/certificate-enrollment-client/*.h" |
| vithyat | 0:977e87915078 | 12 | "${CMAKE_CURRENT_SOURCE_DIR}/source/*.c" |
| vithyat | 0:977e87915078 | 13 | "${CMAKE_CURRENT_SOURCE_DIR}/source/*.cpp" |
| vithyat | 0:977e87915078 | 14 | ) |
| vithyat | 0:977e87915078 | 15 | |
| vithyat | 0:977e87915078 | 16 | message ("*********************************************************************") |
| vithyat | 0:977e87915078 | 17 | message ("certificate_enrollment_client = [[${certificate_enrollment_client}]]") |
| vithyat | 0:977e87915078 | 18 | message ("*********************************************************************") |
| vithyat | 0:977e87915078 | 19 | |
| vithyat | 0:977e87915078 | 20 | CREATE_LIBRARY(certificate-enrollment-client "${certificate_enrollment_client}" "") |
| vithyat | 0:977e87915078 | 21 | |
| vithyat | 0:977e87915078 | 22 | ADDSUBDIRS() |