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.
simple-mbed-cloud-client/mbed-cloud-client/certificate-enrollment-client/CMakeLists.txt@0:8f0bb79ddd48, 2021-05-04 (annotated)
- Committer:
- leothedragon
- Date:
- Tue May 04 08:55:12 2021 +0000
- Revision:
- 0:8f0bb79ddd48
nmn
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
leothedragon | 0:8f0bb79ddd48 | 1 | cmake_minimum_required(VERSION 2.6) |
leothedragon | 0:8f0bb79ddd48 | 2 | project("certificate-enrollment-client") |
leothedragon | 0:8f0bb79ddd48 | 3 | |
leothedragon | 0:8f0bb79ddd48 | 4 | # includes |
leothedragon | 0:8f0bb79ddd48 | 5 | include_directories(${CMAKE_CURRENT_SOURCE_DIR}/source/include) |
leothedragon | 0:8f0bb79ddd48 | 6 | |
leothedragon | 0:8f0bb79ddd48 | 7 | FILE( |
leothedragon | 0:8f0bb79ddd48 | 8 | GLOB_RECURSE |
leothedragon | 0:8f0bb79ddd48 | 9 | certificate_enrollment_client |
leothedragon | 0:8f0bb79ddd48 | 10 | |
leothedragon | 0:8f0bb79ddd48 | 11 | "${CMAKE_CURRENT_SOURCE_DIR}/certificate-enrollment-client/*.h" |
leothedragon | 0:8f0bb79ddd48 | 12 | "${CMAKE_CURRENT_SOURCE_DIR}/source/*.c" |
leothedragon | 0:8f0bb79ddd48 | 13 | "${CMAKE_CURRENT_SOURCE_DIR}/source/*.cpp" |
leothedragon | 0:8f0bb79ddd48 | 14 | ) |
leothedragon | 0:8f0bb79ddd48 | 15 | |
leothedragon | 0:8f0bb79ddd48 | 16 | message ("*********************************************************************") |
leothedragon | 0:8f0bb79ddd48 | 17 | message ("certificate_enrollment_client = [[${certificate_enrollment_client}]]") |
leothedragon | 0:8f0bb79ddd48 | 18 | message ("*********************************************************************") |
leothedragon | 0:8f0bb79ddd48 | 19 | |
leothedragon | 0:8f0bb79ddd48 | 20 | CREATE_LIBRARY(certificate-enrollment-client "${certificate_enrollment_client}" "") |
leothedragon | 0:8f0bb79ddd48 | 21 | |
leothedragon | 0:8f0bb79ddd48 | 22 | ADDSUBDIRS() |