mirror of
https://github.com/reactos/reactos.git
synced 2025-02-28 19:32:59 +00:00
Put one small component of the HAL together
This commit is contained in:
parent
84ce7ff4fa
commit
cf2818762d
2 changed files with 2 additions and 2 deletions
|
@ -2,6 +2,6 @@
|
||||||
project(HAL)
|
project(HAL)
|
||||||
if((ARCH STREQUAL "i386") OR (ARCH STREQUAL "amd64"))
|
if((ARCH STREQUAL "i386") OR (ARCH STREQUAL "amd64"))
|
||||||
add_subdirectory(halx86)
|
add_subdirectory(halx86)
|
||||||
elseif(ARCH STREQUAL "arm")
|
elseif((ARCH STREQUAL "arm") OR (ARCH STREQUAL "arm64"))
|
||||||
add_subdirectory(halarm)
|
add_subdirectory(halarm)
|
||||||
endif()
|
endif()
|
||||||
|
|
|
@ -34,6 +34,6 @@
|
||||||
#include <obfuncs.h>
|
#include <obfuncs.h>
|
||||||
|
|
||||||
/* Internal HAL Headers */
|
/* Internal HAL Headers */
|
||||||
#include "halp.h"
|
//#include "halp.h"
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Reference in a new issue