mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 23:22:45 +00:00
Separate common, ia32-specific, and x64-specific into separate files. Signed-off-by: Charles E. Youse <charles.youse@intel.com>
9 lines
154 B
CMake
9 lines
154 B
CMake
# Copyright (c) 2019 Intel Corp.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_X86_LONGMODE)
|
|
include(x64.cmake)
|
|
else()
|
|
include(ia32.cmake)
|
|
endif()
|