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: HelloWorld_CCA01M1 HelloWorld_CCA02M1 CI-data-logger-server HelloWorld_CCA02M1 ... more
This is a fork of the events subdirectory of https://github.com/ARMmbed/mbed-os.
Note, you must import this library with import name: events!!!
Diff: source/CMakeLists.txt
- Revision:
- 201:dd058cec5f28
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/source/CMakeLists.txt Mon Oct 03 14:40:33 2016 +0300
@@ -0,0 +1,12 @@
+if(DEFINED TARGET_LIKE_X86_LINUX_NATIVE)
+ add_library( mbed-trace
+ mbed_trace.c
+ )
+ add_definitions("-g -O0 -fprofile-arcs -ftest-coverage")
+ target_link_libraries(mbed-trace gcov nanostack-libservice)
+else()
+ add_library( mbed-trace
+ mbed_trace.c
+ )
+ target_link_libraries(mbed-trace nanostack-libservice)
+endif()