-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
117 lines (104 loc) · 3.91 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
cmake_minimum_required(VERSION 2.8)
project(KCUDF)
set(KCUDF_VERSION "0.1")
set(KCUDF_NAME "kcudf")
##########################################################################
## user configurable options
##########################################################################
option(BUILD_TOOLS "Build kcudf tools (requires boost program_options)" NO)
##########################################################################
# Boost
##########################################################################
if (BUILD_TOOLS)
set(BOOST_COMPONENTS)
list(APPEND BOOST_COMPONENTS system)
list(APPEND BOOST_COMPONENTS program_options)
set(Boost_USE_STATIC_LIBS ON)
find_package(Boost 1.47.0 COMPONENTS ${BOOST_COMPONENTS})
if(Boost_FOUND)
include_directories(${Boost_INCLUDE_DIRS})
else()
message(STATUS "Boost is needed to build the tools provided in this package")
message(STATUS "uild with option -DBUILD_TOOLS=No to disable this feature.")
endif()
endif()
##########################################################################
# System information
##########################################################################
message(STATUS "Building for architecture: ${CMAKE_SYSTEM}")
##########################################################################
# Additional compiler flags
##########################################################################
include(CheckCXXCompilerFlag)
check_cxx_compiler_flag("-std=c++0x" C0X_SUPPORT)
if(C0X_SUPPORT)
message(STATUS "CXX has c++0x support")
set(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -std=c++0x")
else()
message(FATAL_ERROR "c++0x capable compiler is needed to build this project at this time")
endif()
check_cxx_compiler_flag(-Wall FLAG_WALL)
if(FLAG_WALL)
add_definitions(-Wall)
endif()
check_cxx_compiler_flag(-Wextra FLAG_WEXTRA)
if(FLAG_WEXTRA)
add_definitions(-Wextra)
endif()
check_cxx_compiler_flag(-fdiagnostics-show-option FLAG_DIAGNOSTIC)
if(FLAG_DIAGNOSTIC)
add_definitions(-fdiagnostics-show-option)
endif()
## temporal flags for development
add_definitions(-O0 -g)
##########################################################################
# Cudf parser
##########################################################################
find_library(CUDF_PARSER_LIB cudfparser)
find_file(CUDF_PARSER_HDR cudf.h)
if (NOT CUDF_PARSER_LIB)
message(FATAL_ERROR "cudf parser needed library")
endif()
if (NOT CUDF_PARSER_HDR)
message(FATAL_ERROR "cudf parser header needed")
endif()
list(APPEND Cudf_LIBRARIES ${CUDF_PARSER_LIB})
message(STATUS "cudf parser: ${CUDF_PARSER_HDR}, ${CUDF_PARSER_LIB}")
##########################################################################
# Library source code
##########################################################################
include_directories(${KCUDF_SOURCE_DIR})
add_library(kcudf
kcudf/cudf.cpp
kcudf/cudf.hh
kcudf/swriter.cpp
kcudf/swriter.hh
kcudf/kcudf.cpp
kcudf/kcudf.hh
kcudf/reduce.cpp
kcudf/reduce.hh
kcudf/gwriter.cpp
kcudf/gwriter.hh
)
##########################################################################
# Installation #
##########################################################################
target_link_libraries(kcudf ${Cudf_LIBRARIES})
install(TARGETS kcudf
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
install(DIRECTORY kcudf/ DESTINATION include/kcudf
FILES_MATCHING PATTERN "*.hh")
##########################################################################
# Tools execuables creation
##########################################################################
if (BUILD_TOOLS)
# Translator
add_executable(cudf2kcudf tools/translator.cpp)
target_link_libraries(cudf2kcudf kcudf ${Boost_LIBRARIES})
add_executable(kcudf-reduce tools/reducer.cpp)
target_link_libraries(kcudf-reduce kcudf ${Boost_LIBRARIES})
# Tools insallation
install(TARGETS cudf2kcudf kcudf-reduce
RUNTIME DESTINATION bin)
endif()