X-Git-Url: https://git.reactos.org/?p=reactos.git;a=blobdiff_plain;f=hal%2FCMakeLists.txt;h=f11bad8f864f3f117bfeec02027c9c324ce136d9;hp=3d4b3b2efe7d9d32a5c958c53f4cd1ee9c1076dc;hb=4b34e44782e44afe2af5277887d8e7df0d436a87;hpb=551ad41c6e48f490168f2e74b0ccb91a74c20860 diff --git a/hal/CMakeLists.txt b/hal/CMakeLists.txt index 3d4b3b2efe7..f11bad8f864 100644 --- a/hal/CMakeLists.txt +++ b/hal/CMakeLists.txt @@ -1,8 +1,9 @@ -if((ARCH MATCHES i386) OR (ARCH MATCHES amd64)) +project(HAL) +if((ARCH STREQUAL "i386") OR (ARCH STREQUAL "amd64")) add_subdirectory(halx86) -elseif(ARCH MATCHES arm) -# add_subdirectory(halarm) -elseif(ARCH MATCHES powerpc) +elseif(ARCH STREQUAL "arm") + add_subdirectory(halarm) +elseif(ARCH STREQUAL "powerpc") # add_subdirectory(halppc) endif()