mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
15 lines
361 B
CMake
15 lines
361 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_apic.c
|
|
apic/rtctimer.c
|
|
apic/tsc.c)
|
|
|
|
add_asm_files(lib_hal_apic_asm ${HAL_APIC_ASM_SOURCE})
|
|
add_object_library(lib_hal_apic ${HAL_APIC_SOURCE} ${lib_hal_apic_asm})
|
|
add_dependencies(lib_hal_apic asm)
|