forked from Xilinx/XRT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
105 lines (84 loc) · 2.73 KB
/
CMakeLists.txt
File metadata and controls
105 lines (84 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2019-2021 Xilinx, Inc. All rights reserved.
#
# Note: Add Windows compilation directives at the END of this file
if( NOT WIN32)
if(${CMAKE_BUILD_TYPE} STREQUAL "Release" AND (NOT XRT_EDGE))
xrt_add_subdirectory(doc)
endif()
option(XOCL_VERBOSE "Enable xocl verbosity" OFF)
option(XRT_VERBOSE "Enable xrt verbosity" OFF)
if (XOCL_VERBOSE)
add_compile_options("-DXOCL_VERBOSE")
endif()
if(XRT_VERBOSE)
add_compile_options("-DXRT_VERBOSE")
endif()
add_compile_options("-fPIC")
if (XRT_ENABLE_WERROR)
list(APPEND XRT_WARN_OPTS "-Werror")
endif(XRT_ENABLE_WERROR)
if (NOT XRT_EDGE)
add_compile_options( ${XRT_WARN_OPTS} )
endif()
xrt_add_subdirectory(xdp)
xrt_add_subdirectory(tools/xclbinutil)
xrt_add_subdirectory(xocl)
xrt_add_subdirectory(xrt)
if (XRT_ALVEO)
# Enable building of ERT firmware for Alveo
xrt_add_subdirectory(ert)
endif()
# --- Optional HIP bindings ---
if (XRT_ENABLE_HIP)
xrt_add_subdirectory(hip)
endif(XRT_ENABLE_HIP)
if (NOT XRT_EDGE)
# Only for host native build.
# For embedded, headers and libraries are installed in /usr
# Not requeired setup.sh/.csh
xrt_add_subdirectory(tools/scripts)
if (XRT_NPU)
# Used by xdp for include search path
set(AIERT_DIR ${CMAKE_CURRENT_BINARY_DIR}/aie-rt/driver/src)
set(XAIENGINE_BUILD_SHARED OFF)
xrt_add_subdirectory_disable_install_target(aie-rt/driver/src)
endif()
endif()
# Attach to the user's linker flags
set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-Bsymbolic")
set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,defs")
xrt_add_subdirectory(core)
else()
# = WINDOWS ===================================================================
# Enable ALL warnings and make them errors if they occur
if (MSVC)
# warning level 4 and all warnings are errors
add_compile_options(/WX /W4)
if (DEFINED MSVC_PARALLEL_JOBS)
string(CONCAT MP_OPTION "/MP" ${MSVC_PARALLEL_JOBS})
add_compile_options(${MP_OPTION})
endif()
else()
# lots of warnings and all warnings as errors
# add_compile_options(-Wall -Wextra -pedantic -Werror)
add_compile_options( ${XRT_WARN_OPTS} )
endif()
if (XRT_NPU)
# Used by xdp for include search path
set(AIERT_DIR ${CMAKE_CURRENT_BINARY_DIR}/aie-rt/driver/src)
set(XAIENGINE_BUILD_SHARED OFF)
xrt_add_subdirectory_disable_install_target(aie-rt/driver/src)
endif()
# Build Subdirectories
xrt_add_subdirectory(xocl)
xrt_add_subdirectory(xrt)
xrt_add_subdirectory(tools/xclbinutil)
xrt_add_subdirectory(xdp)
xrt_add_subdirectory(tools/scripts)
xrt_add_subdirectory(core)
# --- Optional HIP bindings ---
if (XRT_ENABLE_HIP)
xrt_add_subdirectory(hip)
endif(XRT_ENABLE_HIP)
endif()