-
Notifications
You must be signed in to change notification settings - Fork 333
/
CMakeLists.txt
181 lines (152 loc) · 5.33 KB
/
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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
if(NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
# Generated by `boostdep --cmake compute`
# Copyright 2020, 2021 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
# https://www.boost.org/LICENSE_1_0.txt
cmake_minimum_required(VERSION 3.5...3.20)
project(boost_compute VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
add_library(boost_compute INTERFACE)
add_library(Boost::compute ALIAS boost_compute)
target_include_directories(boost_compute INTERFACE include)
target_link_libraries(boost_compute
INTERFACE
Boost::algorithm
Boost::array
Boost::assert
Boost::atomic
Boost::chrono
Boost::config
Boost::core
Boost::filesystem
Boost::function
Boost::function_types
Boost::fusion
Boost::iterator
Boost::lexical_cast
Boost::mpl
Boost::optional
Boost::preprocessor
Boost::property_tree
Boost::proto
Boost::range
Boost::smart_ptr
Boost::static_assert
Boost::thread
Boost::throw_exception
Boost::tuple
Boost::type_traits
Boost::typeof
Boost::utility
Boost::uuid
)
else()
# ---------------------------------------------------------------------------
# Copyright (c) 2013 Kyle Lutz <[email protected]>
#
# Distributed under the Boost Software License, Version 1.0
# See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt
#
# ---------------------------------------------------------------------------
cmake_minimum_required(VERSION 2.8)
project(BoostCompute)
set(CMAKE_MODULE_PATH ${BoostCompute_SOURCE_DIR}/cmake)
if (CMAKE_VERSION VERSION_LESS "3.1.0")
list(APPEND CMAKE_MODULE_PATH "${BoostCompute_SOURCE_DIR}/cmake/opencl")
endif()
# find OpenCL
find_package(OpenCL REQUIRED)
include_directories(SYSTEM ${OpenCL_INCLUDE_DIRS})
# find Boost
find_package(Boost 1.54 REQUIRED)
include_directories(SYSTEM ${Boost_INCLUDE_DIRS})
# optional support for c++11
option(BOOST_COMPUTE_USE_CPP11 "Use C++11 features" OFF)
if(NOT MSVC)
if(${BOOST_COMPUTE_USE_CPP11})
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
endif()
endif()
# optional support for offline-caching
option(BOOST_COMPUTE_USE_OFFLINE_CACHE "Use offline cache for OpenCL program binaries" OFF)
if(${BOOST_COMPUTE_USE_OFFLINE_CACHE})
add_definitions(-DBOOST_COMPUTE_USE_OFFLINE_CACHE)
endif()
# thread-safety options
option(BOOST_COMPUTE_THREAD_SAFE "Compile with BOOST_COMPUTE_THREAD_SAFE defined" OFF)
if(${BOOST_COMPUTE_THREAD_SAFE})
add_definitions(-DBOOST_COMPUTE_THREAD_SAFE)
if(${BOOST_COMPUTE_USE_CPP11})
if(MSVC)
if (MSVC_VERSION GREATER 1800)
add_definitions(-DBOOST_COMPUTE_HAVE_THREAD_LOCAL)
endif()
else()
add_definitions(-DBOOST_COMPUTE_HAVE_THREAD_LOCAL)
endif()
endif()
endif()
# optional third-party libraries
option(BOOST_COMPUTE_HAVE_EIGEN "Have Eigen" OFF)
option(BOOST_COMPUTE_HAVE_OPENCV "Have OpenCV" OFF)
option(BOOST_COMPUTE_HAVE_QT "Have Qt" OFF)
option(BOOST_COMPUTE_HAVE_VTK "Have VTK" OFF)
option(BOOST_COMPUTE_HAVE_CUDA "Have CUDA" OFF)
option(BOOST_COMPUTE_HAVE_TBB "Have TBB" OFF)
option(BOOST_COMPUTE_HAVE_BOLT "Have BOLT" OFF)
include_directories(include)
if(${OpenCL_HEADER_CL_EXT_FOUND})
add_definitions(-DBOOST_COMPUTE_HAVE_HDR_CL_EXT)
endif()
if(WIN32)
# optional support for boost dynamic libraries
option(BOOST_COMPUTE_BOOST_ALL_DYN_LINK "Use boost dynamic link libraries" OFF)
if(${BOOST_COMPUTE_BOOST_ALL_DYN_LINK})
add_definitions(-DBOOST_ALL_DYN_LINK)
else()
# for default use statis libs
set(Boost_USE_STATIC_LIBS ON)
endif()
link_directories(${Boost_LIBRARY_DIRS})
endif()
# compiler options
option(BOOST_COMPUTE_ENABLE_COVERAGE "Enable code coverage generation" OFF)
# Visual Studio C++
if(MSVC)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
add_definitions(-D_SCL_SECURE_NO_WARNINGS)
add_definitions(-DNOMINMAX)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4003") # Not enough actual parameters for a BOOST_PP macro
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4244") # Warning C4244: 'initializing': conversion from 'double' to 'int', possible loss of data
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4305") # Warning C4305: 'initializing': truncation from 'double' to 'float'
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4800") # Warning C4800: 'uint32_t' : forcing value to bool 'true' or 'false' (performance warning)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4838") # Warning C4838: conversion from 'double' to 'float' requires a narrowing conversion
endif()
option(BOOST_COMPUTE_BUILD_TESTS "Build the Boost.Compute tests" OFF)
if(${BOOST_COMPUTE_BUILD_TESTS})
enable_testing()
add_subdirectory(test)
endif()
option(BOOST_COMPUTE_BUILD_BENCHMARKS "Build the Boost.Compute benchmarks" OFF)
if(${BOOST_COMPUTE_BUILD_BENCHMARKS})
add_subdirectory(perf)
endif()
option(BOOST_COMPUTE_BUILD_EXAMPLES "Build the Boost.Compute examples" OFF)
if(${BOOST_COMPUTE_BUILD_EXAMPLES})
add_subdirectory(example)
endif()
# configure cmake config file
configure_file(
cmake/BoostComputeConfig.cmake.in
${BoostCompute_BINARY_DIR}/BoostComputeConfig.cmake
@ONLY
)
# install cmake config file
install(
FILES ${BoostCompute_BINARY_DIR}/BoostComputeConfig.cmake
DESTINATION lib/cmake/BoostCompute
)
# install header files
install(DIRECTORY include/boost DESTINATION include/compute)
endif()