forked from HSA-Libraries/Bolt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FindOpenCL.cmake
98 lines (90 loc) · 3.71 KB
/
FindOpenCL.cmake
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
############################################################################
# Copyright 2012 - 2013 Advanced Micro Devices, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
############################################################################
#############################################################################
## Copyright (C) 2010 Advanced Micro Devices, Inc. All Rights Reserved.
#############################################################################
# Locate an OpenCL implementation.
# Currently supports AMD APP SDK (http://developer.amd.com/sdks/AMDAPPSDK/Pages/default.aspx/)
#
# Defines the following variables:
#
# OPENCL_FOUND - Found the OPENCL framework
# OPENCL_INCLUDE_DIRS - Include directories
#
# Also defines the library variables below as normal
# variables. These contain debug/optimized keywords when
# a debugging library is found.
#
# OPENCL_LIBRARIES - libopencl
#
# Accepts the following variables as input:
#
# OPENCL_ROOT - (as a CMake or environment variable)
# The root directory of the OpenCL implementation found
#
# FIND_LIBRARY_USE_LIB64_PATHS - Global property that controls whether findOpenCL should search for
# 64bit or 32bit libs
#-----------------------
# Example Usage:
#
# find_package(OPENCL REQUIRED)
# include_directories(${OPENCL_INCLUDE_DIRS})
#
# add_executable(foo foo.cc)
# target_link_libraries(foo ${OPENCL_LIBRARIES})
#
#-----------------------
find_path( OPENCL_INCLUDE_DIRS
NAMES OpenCL/cl.h CL/cl.h
HINTS
${OPENCL_ROOT}/include
$ENV{OPENCL_ROOT}/include
$ENV{AMDAPPSDKROOT}/include
PATHS
/usr/include
/usr/local/include
DOC "OpenCL header file path"
)
mark_as_advanced( OPENCL_INCLUDE_DIRS )
# Search for 64bit libs if FIND_LIBRARY_USE_LIB64_PATHS is set to true in the global environment, 32bit libs else
get_property( LIB64 GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS )
if( LIB64 )
find_library( OPENCL_LIBRARIES
NAMES OpenCL
HINTS
${OPENCL_ROOT}/lib
$ENV{OPENCL_ROOT}/lib
$ENV{AMDAPPSDKROOT}/lib
DOC "OpenCL dynamic library path"
PATH_SUFFIXES x86_64 x64
)
else( )
find_library( OPENCL_LIBRARIES
NAMES OpenCL
HINTS
${OPENCL_ROOT}/lib
$ENV{OPENCL_ROOT}/lib
$ENV{AMDAPPSDKROOT}/lib
DOC "OpenCL dynamic library path"
PATH_SUFFIXES x86
)
endif( )
mark_as_advanced( OPENCL_LIBRARIES )
include( FindPackageHandleStandardArgs )
FIND_PACKAGE_HANDLE_STANDARD_ARGS( OPENCL DEFAULT_MSG OPENCL_LIBRARIES OPENCL_INCLUDE_DIRS )
if( NOT OPENCL_FOUND )
message( STATUS "FindOpenCL looked for libraries named: OpenCL" )
endif()