More indentation in CMakeLists.txt

This commit is contained in:
apio 2022-11-19 18:00:45 +01:00
parent 70c6b78e35
commit 883a1da0d7

View File

@ -7,13 +7,13 @@ set(SOURCES
) )
if("${ARCH}" MATCHES "x86_64") if("${ARCH}" MATCHES "x86_64")
set(SOURCES set(SOURCES
${SOURCES} ${SOURCES}
src/arch/x86_64/IO.cpp src/arch/x86_64/IO.cpp
src/arch/x86_64/Serial.cpp src/arch/x86_64/Serial.cpp
src/arch/x86_64/MMU.cpp src/arch/x86_64/MMU.cpp
src/arch/x86_64/CPU.cpp src/arch/x86_64/CPU.cpp
) )
endif() endif()
add_executable(moon ${SOURCES}) add_executable(moon ${SOURCES})