Skip to content

Commit

Permalink
style: fix style to address github CI warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Heider <[email protected]>
  • Loading branch information
Axel Heider authored and lsf37 committed Jun 25, 2022
1 parent 158159c commit 63fc015
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down

0 comments on commit 63fc015

Please sign in to comment.