Initial commint

prepare cmake files
include unity fo testing
This commit is contained in:
2022-06-17 13:15:56 +02:00
commit 7ec8ce280e
10 changed files with 4470 additions and 0 deletions

17
test/oled/CMakeLists.txt Normal file
View File

@@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 3.10)
set(TEST_NAME oled)
set(INCLUDE_DIRS
../../oled
helpers/inc
)
set(SRCS
)
add_definitions(-DTEST)
add_executable(${TEST_NAME} ${SRCS})
target_include_directories(${TEST_NAME} PUBLIC ${INCLUDE_DIR})