blob: f63987f737e5352b61938a1f9600e9df1d8cfc17 [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
#
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
#find_package(OpenSSL REQUIRED)
#message(">>>>> OpenSSL include dir: ${OPENSSL_INCLUDE_DIR}")
#message(">>>>> OpenSSL libraries: ${OPENSSL_LIBRARIES}")
set(CMAKE_BUILD_TYPE, Release)
set(PIPES_FLAGS "-g -Wall -O2 -D_REENTRANT -D_GNU_SOURCE")
set(PIPES_FLAGS "${PIPES_FLAGS} -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${PIPES_FLAGS}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${PIPES_FLAGS}")
include(JNIFlags.cmake NO_POLICY_SCOPE)
function(output_directory TGT DIR)
SET_TARGET_PROPERTIES(${TGT} PROPERTIES
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${DIR}")
SET_TARGET_PROPERTIES(${TGT} PROPERTIES
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${DIR}")
SET_TARGET_PROPERTIES(${TGT} PROPERTIES
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${DIR}")
endfunction(output_directory TGT DIR)
include_directories(
main/native/utils/api
main/native/pipes/api
${CMAKE_CURRENT_SOURCE_DIR}
# ${OPENSSL_INCLUDE_DIR}
)
# Example programs
add_executable(summation main/native/examples/impl/summation.cc)
target_link_libraries(summation hadooputils)
output_directory(summation examples)
add_executable(piestimator main/native/examples/impl/piestimator.cc)
target_link_libraries(piestimator hadooputils)
output_directory(piestimator examples)
add_executable(matrixmultiplication main/native/examples/impl/matrixmultiplication.cc)
target_link_libraries(matrixmultiplication DenseDoubleVector hadooputils)
output_directory(matrixmultiplication examples)
add_library(DenseDoubleVector
main/native/examples/impl/DenseDoubleVector.cc
)
add_library(hadooputils STATIC
main/native/utils/impl/StringUtils.cc
main/native/utils/impl/Splitter.cc
main/native/utils/impl/SerialUtils.cc
)
#add_library(hamapipes STATIC
# main/native/pipes/impl/Pipes.cc
#)
#target_link_libraries(hamapipes
# ${OPENSSL_LIBRARIES}
# pthread
#)