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.
Dependents: UAVCAN UAVCAN_Subscriber
libuavcan_drivers/stm32/driver/CMakeLists.txt@0:dfe6edabb8ec, 2018-04-14 (annotated)
- Committer:
- RuslanUrya
- Date:
- Sat Apr 14 10:25:32 2018 +0000
- Revision:
- 0:dfe6edabb8ec
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
RuslanUrya | 0:dfe6edabb8ec | 1 | include_directories( |
RuslanUrya | 0:dfe6edabb8ec | 2 | ./include |
RuslanUrya | 0:dfe6edabb8ec | 3 | ) |
RuslanUrya | 0:dfe6edabb8ec | 4 | |
RuslanUrya | 0:dfe6edabb8ec | 5 | add_library(uavcan_stm32_driver STATIC |
RuslanUrya | 0:dfe6edabb8ec | 6 | ./src/uc_stm32_can.cpp |
RuslanUrya | 0:dfe6edabb8ec | 7 | ./src/uc_stm32_clock.cpp |
RuslanUrya | 0:dfe6edabb8ec | 8 | ./src/uc_stm32_thread.cpp |
RuslanUrya | 0:dfe6edabb8ec | 9 | ) |
RuslanUrya | 0:dfe6edabb8ec | 10 | |
RuslanUrya | 0:dfe6edabb8ec | 11 | add_dependencies(uavcan_stm32_driver uavcan) |
RuslanUrya | 0:dfe6edabb8ec | 12 | |
RuslanUrya | 0:dfe6edabb8ec | 13 | install(DIRECTORY include/uavcan_stm32 DESTINATION include) |
RuslanUrya | 0:dfe6edabb8ec | 14 | install(TARGETS uavcan_stm32_driver DESTINATION lib) |
RuslanUrya | 0:dfe6edabb8ec | 15 | |
RuslanUrya | 0:dfe6edabb8ec | 16 | # vim: set et ft=cmake fenc=utf-8 ff=unix sts=4 sw=4 ts=4 :) |
RuslanUrya | 0:dfe6edabb8ec | 17 |