reactos/hal/halx86/minihal/CMakeLists.txt
Victor Perevertkin 7601fb549c
[HALX86] Rearrange files in x86 HAL
- Rename UP -> PIC. The "up" folder in fact contains the code for
  managing the Intel 8259 PIC chip
- Move amd64/processor.c -> apic/processor.c. The code is not tied to
  amd64
- Remove platform from "halinit*" files. They already reside in the
  corresponding folder
2021-03-15 02:48:35 +03:00

53 lines
1.3 KiB
CMake

list(APPEND MINI_HAL_SOURCE
../generic/portio.c
../legacy/bus/bushndlr.c
../legacy/bus/cmosbus.c
../legacy/bus/isabus.c
../legacy/bus/pcibus.c
../legacy/bus/sysbus.c
../legacy/bussupp.c
../generic/bios.c
../generic/dma.c
../generic/display.c
../generic/drive.c
../generic/misc.c
../generic/nmi.c
../generic/spinlock.c
../generic/sysinfo.c
../generic/timer.c
../generic/usage.c
../pic/pic.c
../pic/processor.c
../include/hal.h
halinit.c)
if(SARCH STREQUAL "xbox")
list(APPEND MINI_HAL_SOURCE
../generic/beep.c
../generic/cmos.c
../generic/profil.c
../xbox/clock.c
../xbox/reboot.c)
elseif(SARCH STREQUAL "pc98")
list(APPEND MINI_HAL_SOURCE
../pc98/beep.c
../pc98/clock.c
../pc98/cmos.c
../pc98/profil.c
../pc98/reboot.c)
else()
list(APPEND MINI_HAL_SOURCE
../generic/beep.c
../generic/clock.c
../generic/cmos.c
../generic/profil.c
../generic/reboot.c)
endif()
add_asm_files(mini_hal_asm ../generic/systimer.S)
add_library(mini_hal ${MINI_HAL_SOURCE} ${mini_hal_asm})
target_compile_definitions(mini_hal PRIVATE _BLDR_ _MINIHAL_)
add_dependencies(mini_hal psdk bugcodes asm)
add_pch(mini_hal ../include/hal.h MINI_HAL_SOURCE)