-
Notifications
You must be signed in to change notification settings - Fork 24
/
CMakeLists.txt
41 lines (29 loc) · 1.15 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
project(clew)
option( BUILD_TESTS "Build test program." ON )
option( BUILD_SHARED_LIBRARY "Shared library, rather than static library." OFF )
option( INSTALL_CL_HEADER "Install cl.h / opencl.h proxy headers to ease compilation of software not aware of CLEW" OFF )
cmake_minimum_required (VERSION 2.6)
if (NOT CMAKE_VERSION VERSION_LESS 2.8.4)
cmake_policy (SET CMP0017 NEW)
endif()
include(CMakeParseArguments)
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS TRUE)
message(STATUS "Project source dir = ${PROJECT_SOURCE_DIR}")
message(STATUS "Project build dir = ${CMAKE_BINARY_DIR}")
# add the automatically determined parts of the RPATH
# which point to directories outside the build tree to the install RPATH
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
if(CMAKE_COMPILER_IS_GNUCC)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC -Wall")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -Wall")
endif()
add_definitions(-DCL_USE_DEPRECATED_OPENCL_1_1_APIS)
if( NOT BUILD_SHARED_LIBRARY )
add_definitions(-Dclew_STATIC)
endif()
include_directories(include)
add_subdirectory(src)
add_subdirectory(include)
if( BUILD_TESTS )
add_subdirectory(clewTest)
endif( BUILD_TESTS )