-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exclude Alveo content from NPU component
Ensure that Alveo specific content is built only for Alveo or legacy XRT components. E.g., only build Alveo artifacts when XRT_ALVEO is defined. Signed-off-by: Soren Soe <[email protected]>
- Loading branch information
Showing
10 changed files
with
62 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# Copyright (C) 2019-2021 Xilinx, Inc. All rights reserved. | ||
# | ||
add_subdirectory(common_em) | ||
add_subdirectory(sw_emu) | ||
add_subdirectory(hw_emu) | ||
# Copyright (C) 2025 Advanced Micro Devices, Inc. All rights reserved. | ||
if (XRT_ALVEO) | ||
add_subdirectory(common_em) | ||
add_subdirectory(sw_emu) | ||
add_subdirectory(hw_emu) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# Copyright (C) 2019-2021 Xilinx, Inc. All rights reserved. | ||
# | ||
add_subdirectory(cloud-daemon) | ||
|
||
# Copyright (C) 2025 Advanced Micro Devices, Inc. All rights reserved. | ||
if(XRT_ALVEO) | ||
add_subdirectory(cloud-daemon) | ||
add_subdirectory(xbflash.qspi) | ||
endif(XRT_ALVEO) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# Copyright (C) 2019-2022 Xilinx, Inc. All rights reserved. | ||
# | ||
xrt_add_subdirectory(alveo) | ||
# Copyright (C) 2025 Advanced Micro Devices, Inc. All rights reserved. | ||
if (XRT_ALVEO) | ||
xrt_add_subdirectory(alveo) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters