forked from intel/pti-gpu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
37 lines (29 loc) · 998 Bytes
/
CMakeLists.txt
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
include("../../build_utils/CMakeLists.txt")
SetRequiredCMakeVersion()
cmake_minimum_required(VERSION ${REQUIRED_CMAKE_VERSION})
project(PTI_Samples_L0_Debug_Info CXX)
SetCompilerFlags()
SetBuildType()
# Tool Library
add_library(zet_debug_info SHARED "${PROJECT_SOURCE_DIR}/../../loader/init.cc" tool.cc)
target_include_directories(zet_debug_info
PRIVATE "${PROJECT_SOURCE_DIR}/../../utils")
if(CMAKE_INCLUDE_PATH)
target_include_directories(zet_debug_info
PUBLIC "${CMAKE_INCLUDE_PATH}")
endif()
FindL0Library(zet_debug_info)
FindL0Headers(zet_debug_info)
FindIGALibrary(zet_debug_info)
GetIGAHeaders(zet_debug_info)
GetIGCHeaders(zet_debug_info)
GetGmmHeaders(zet_debug_info)
# Loader
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DTOOL_NAME=zet_debug_info")
add_executable(ze_debug_info "${PROJECT_SOURCE_DIR}/../../loader/loader.cc")
target_include_directories(ze_debug_info
PRIVATE "${PROJECT_SOURCE_DIR}/../../utils")
if(UNIX)
target_link_libraries(ze_debug_info
dl)
endif()