File tree Expand file tree Collapse file tree 4 files changed +10
-12
lines changed
Expand file tree Collapse file tree 4 files changed +10
-12
lines changed Original file line number Diff line number Diff line change 1- add_library (TaskManagerIO
2- ../src/SimpleSpinLock.cpp
3- ../src/TaskManagerIO.cpp
4- ../src/TaskTypes.cpp
5- ../src/TmLongSchedule.cpp
6- )
1+
2+ file (GLOB SOURCES "${CMAKE_CURRENT_LIST_DIR} /../src/*.cpp" )
3+
4+ add_library (TaskManagerIO ${SOURCES} )
75
86target_compile_definitions (TaskManagerIO
97 PUBLIC BUILD_FOR_PICO_CMAKE=1 BUILD_PICO_FORCE_UART=1 IO_LOGGING_DEBUG=1
108)
119
1210target_include_directories (TaskManagerIO PUBLIC
13- ${PROJECT_SOURCE_DIR} /lib/TaskManagerIO /src
11+ ${CMAKE_CURRENT_LIST_DIR} /.. /src
1412)
1513
1614target_link_libraries (TaskManagerIO PUBLIC TcMenuLog pico_stdlib pico_sync )
Original file line number Diff line number Diff line change 66#ifndef TASKMANAGERIO_BASICINTERRUPTABSTRACTION_H
77#define TASKMANAGERIO_BASICINTERRUPTABSTRACTION_H
88
9- #include < TaskPlatformDeps.h>
10- #include < TaskManagerIO.h>
9+ #include " TaskPlatformDeps.h"
10+ #include " TaskManagerIO.h"
1111
1212#ifdef IOA_USE_ARDUINO
1313
Original file line number Diff line number Diff line change 66#ifndef _TASKMANAGERIO_TASKBLOCK_H_
77#define _TASKMANAGERIO_TASKBLOCK_H_
88
9- #include < TaskPlatformDeps.h>
10- #include < TaskTypes.h>
9+ #include " TaskPlatformDeps.h"
10+ #include " TaskTypes.h"
1111
1212/* *
1313 * @file TaskBlock.h
Original file line number Diff line number Diff line change 1111 * @brief long schedule support for task manager
1212 */
1313
14- #include < TaskManagerIO.h>
14+ #include " TaskManagerIO.h"
1515
1616/* *
1717 * A task manager task that can be scheduled safely in hours and days. If you need more than this, you'll probably need to
You can’t perform that action at this time.
0 commit comments