mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
16 lines
377 B
CMake
16 lines
377 B
CMake
|
|
list(APPEND HAL_APIC_ASM_SOURCE
|
|
apic/apictrap.S
|
|
apic/tsccal.S)
|
|
|
|
list(APPEND HAL_APIC_SOURCE
|
|
apic/apic.c
|
|
apic/apictimer.c
|
|
apic/halinit.c
|
|
apic/processor.c
|
|
apic/rtctimer.c
|
|
apic/tsc.c)
|
|
|
|
add_asm_files(lib_hal_apic_asm ${HAL_APIC_ASM_SOURCE})
|
|
add_library(lib_hal_apic OBJECT ${HAL_APIC_SOURCE} ${lib_hal_apic_asm})
|
|
add_dependencies(lib_hal_apic asm)
|