diff options
| author | JF <jf@codingfield.com> | 2020-01-18 18:17:52 +0100 |
|---|---|---|
| committer | JF <jf@codingfield.com> | 2020-01-18 18:17:52 +0100 |
| commit | f049f382f03c946b967e1a53368c82f845299cb4 (patch) | |
| tree | ca3da186765e5d0bc89a310d2c648bc12ff189d3 /src/CMakeLists.txt | |
| parent | f14ba4a7e336607f88548963213100cf1478290c (diff) | |
Encapsulate the drawing of the screen into Screens classes.
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f4c787f6..eb755019 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -31,8 +31,11 @@ list(APPEND SOURCE_FILES Logging/NrfLogger.cpp BlinkApp/BlinkApp.cpp DisplayApp/DisplayApp.cpp - DisplayApp/lcdfont70.c - DisplayApp/lcdfont14.c + DisplayApp/Fonts/lcdfont70.c + DisplayApp/Fonts/lcdfont14.c + DisplayApp/Screens/Screen.cpp + DisplayApp/Screens/Clock.cpp + DisplayApp/Screens/Message.cpp main.cpp drivers/St7789.cpp drivers/SpiMaster.cpp @@ -52,8 +55,11 @@ set(INCLUDE_FILES Logging/NrfLogger.h BlinkApp/BlinkApp.h DisplayApp/DisplayApp.h - DisplayApp/lcdfont70.h - DisplayApp/lcdfont14.h + DisplayApp/Fonts/lcdfont70.h + DisplayApp/Fonts/lcdfont14.h + DisplayApp/Screens/Screen.h + DisplayApp/Screens/Clock.h + DisplayApp/Screens/Message.h drivers/St7789.h drivers/SpiMaster.h Components/Gfx/Gfx.h |
