-
Notifications
You must be signed in to change notification settings - Fork 56
/
CMakeLists.txt
35 lines (28 loc) · 965 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
include("../../build_utils/CMakeLists.txt")
SetRequiredCMakeVersion()
cmake_minimum_required(VERSION ${REQUIRED_CMAKE_VERSION})
project(PTI_Samples_OpenCL_Hot_Functions CXX)
SetCompilerFlags()
SetBuildType()
# Tool Library
add_library(clt_hot_functions SHARED
"${PROJECT_SOURCE_DIR}/../../loader/init.cc"
tool.cc)
target_include_directories(clt_hot_functions
PRIVATE "${PROJECT_SOURCE_DIR}/../../utils")
if(CMAKE_INCLUDE_PATH)
target_include_directories(clt_hot_functions
PUBLIC "${CMAKE_INCLUDE_PATH}")
endif()
FindOpenCLLibrary(clt_hot_functions)
FindOpenCLHeaders(clt_hot_functions)
GetOpenCLTracingHeaders(clt_hot_functions)
# Loader
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DTOOL_NAME=clt_hot_functions")
add_executable(cl_hot_functions "${PROJECT_SOURCE_DIR}/../../loader/loader.cc")
target_include_directories(cl_hot_functions
PRIVATE "${PROJECT_SOURCE_DIR}/../../utils")
if(UNIX)
target_link_libraries(cl_hot_functions
dl)
endif()