From 63fc01515b6477e2cb853a498cb5b046850b70db Mon Sep 17 00:00:00 2001 From: Axel Heider Date: Fri, 24 Jun 2022 16:30:35 +0200 Subject: [PATCH] style: fix style to address github CI warnings Signed-off-by: Axel Heider --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 46c93c85..b06525c9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,12 +9,12 @@ include(settings.cmake) project(camkes-vm C CXX ASM) if(AppArch STREQUAL "Arm") - find_package(camkes-arm-vm REQUIRED) - camkes_arm_vm_setup_arm_vm_environment() -elseif (AppArch STREQUAL "x86") - camkes_x86_vm_setup_x86_vm_environment() + find_package(camkes-arm-vm REQUIRED) + camkes_arm_vm_setup_arm_vm_environment() +elseif(AppArch STREQUAL "x86") + camkes_x86_vm_setup_x86_vm_environment() else() - message(FATAL_ERROR "Unsupported") + message(FATAL_ERROR "Unsupported") endif() # Add VM application add_subdirectory("apps/${AppArch}/${CAMKES_VM_APP}")