Create project structure

This commit is contained in:
Camden Dixie O'Brien 2023-05-14 18:09:29 +01:00
parent 629031ee71
commit 5ae721d25f
3 changed files with 13 additions and 0 deletions

4
CMakeLists.txt Normal file
View File

@ -0,0 +1,4 @@
cmake_minimum_required(VERSION 3.16)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(bedside_clock)

1
main/CMakeLists.txt Normal file
View File

@ -0,0 +1 @@
idf_component_register(SRCS "main.c")

8
main/main.c Normal file
View File

@ -0,0 +1,8 @@
/*
* SPDX-License-Identifier: AGPL-3.0-only
* Copyright (c) Camden Dixie O'Brien
*/
void app_main(void)
{
}