From 1fb0e3f6ccb8234c7bc3e1b0c4f9df99e214dc7e Mon Sep 17 00:00:00 2001 From: Sylvain Munaut Date: Mon, 16 May 2022 22:04:33 +0200 Subject: [PATCH] build: Split source file on multiple lines Makes it easier to read and also better for merge/rebase commits that add source files Signed-off-by: Sylvain Munaut --- main/CMakeLists.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index bc32bd7..4b0f17e 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt @@ -1,5 +1,15 @@ idf_component_register( - SRCS "main.c" "menu.c" "fpga_test.c" "pax_keyboard.c" "system_wrapper.c" "appfs_wrapper.c" "graphics_wrapper.c" "settings.c" "wifi_connection.c" "rp2040_updater.c" "wifi_ota.c" + SRCS "main.c" + "appfs_wrapper.c" + "fpga_test.c" + "graphics_wrapper.c" + "menu.c" + "pax_keyboard.c" + "rp2040_updater.c" + "settings.c" + "system_wrapper.c" + "wifi_connection.c" + "wifi_ota.c" INCLUDE_DIRS "." "include" EMBED_TXTFILES ${project_dir}/server_certs/isrgrootx1.pem )