From ba0b4c339d645489a2a01c1e003f2de8c79f9e1a Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Wed, 7 Feb 2024 17:25:25 +0100 Subject: [PATCH] Reduce virtual disk image size to save build time --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bc2200c..adbbd1e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,7 +66,7 @@ file(RELATIVE_PATH _PATH_PREFIX ${EXECTOS_BINARY_DIR} ${EXECTOS_SOURCE_DIR}) add_compiler_flags(-D__RELFILE__="&__FILE__[__FILE__[0] == '.' ? sizeof \\\"${_PATH_PREFIX}\\\" - 1 : sizeof XTOS_SOURCE_DIR]") # Set the virtual disk image size (in MiB) -set_disk_image_size(128) +set_disk_image_size(32) # Build all subprojects add_subdirectory(bootdata)