zephyr/drivers/pcie/endpoint/CMakeLists.txt
Daniel Leung 941eb9696a drivers: pcie: build as static library
Instead of putting the object files inside libzephyr.a,
simply build a separate static library as most other
driver types are doing this already.

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
2021-08-17 06:06:03 -04:00

12 lines
196 B
CMake

# SPDX-License-Identifier: Apache-2.0
zephyr_library()
zephyr_library_sources(pcie_ep_common.c)
zephyr_library_sources_ifdef(
CONFIG_PCIE_EP_IPROC
pcie_ep_iproc.c
pcie_ep_iproc_msi.c
)