forked from arduino/ArduinoCore-mbed
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add remaining libraries to CMake build
- Loading branch information
1 parent
ae13b7e
commit 25cb382
Showing
13 changed files
with
92 additions
and
4,696 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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,3 @@ | ||
# For this library, we cannot build the examples as part of Mbed CE, because they rely on driver libraries | ||
# which are maintained outside this repo. | ||
install(DIRECTORY . DESTINATION libraries/MLC) |
This file contains 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,7 @@ | ||
add_library(arduino-Nano33BLE_System INTERFACE) | ||
target_link_libraries(arduino-Nano33BLE_System INTERFACE arduino-core) | ||
target_include_directories(arduino-Nano33BLE_System INTERFACE src) | ||
|
||
build_arduino_examples(Nano33BLE_System examples) | ||
|
||
install(DIRECTORY . DESTINATION libraries/Nano33BLE_System) |
This file contains 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
This file contains 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,13 @@ | ||
# SFU OTA update library for RP2040. | ||
# Note that the bootloader source is in the 'extras' directory, and it would be cool to compile | ||
# it as part of the core build... but it needs different build options than the main Arduino core | ||
# (no USB console, small C library), so it would need to be moved to its own repo. | ||
|
||
set(SFU_SOURCES | ||
src/SFU.cpp) | ||
|
||
add_library(arduino-SFU STATIC ${SFU_SOURCES}) | ||
target_link_libraries(arduino-SFU PUBLIC arduino-core mbed-storage-fat mbed-storage-flashiap) | ||
target_include_directories(arduino-SFU PUBLIC src) | ||
|
||
install(DIRECTORY . DESTINATION libraries/SFU) |
Empty file.
This file contains 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
This file contains 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
Oops, something went wrong.