123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- #
- # 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)
- # Default to release builds
- set(CMAKE_BUILD_TYPE, Release)
- # If JVM_ARCH_DATA_MODEL is 32, compile all binaries as 32-bit.
- # This variable is set by maven.
- if (JVM_ARCH_DATA_MODEL EQUAL 32)
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m32")
- set(CMAKE_LD_FLAGS "${CMAKE_LD_FLAGS} -m32")
- endif (JVM_ARCH_DATA_MODEL EQUAL 32)
- # Compile a library with both shared and static variants
- function(add_dual_library LIBNAME)
- add_library(${LIBNAME} SHARED ${ARGN})
- add_library(${LIBNAME}_static STATIC ${ARGN})
- set_target_properties(${LIBNAME}_static PROPERTIES OUTPUT_NAME ${LIBNAME})
- endfunction(add_dual_library)
- # Link both a static and a dynamic target against some libraries
- function(target_link_dual_libraries LIBNAME)
- target_link_libraries(${LIBNAME} ${ARGN})
- target_link_libraries(${LIBNAME}_static ${ARGN})
- endfunction(target_link_dual_libraries)
- 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)
- function(dual_output_directory TGT DIR)
- output_directory(${TGT} "${DIR}")
- output_directory(${TGT}_static "${DIR}")
- endfunction(dual_output_directory TGT DIR)
- # Flatten a list into a string.
- function(FLATTEN_LIST INPUT SEPARATOR OUTPUT)
- string (REPLACE ";" "${SEPARATOR}" _TMPS "${INPUT}")
- set (${OUTPUT} "${_TMPS}" PARENT_SCOPE)
- endfunction()
- find_package(JNI REQUIRED)
- if (NOT GENERATED_JAVAH)
- # Must identify where the generated headers have been placed
- MESSAGE(FATAL_ERROR "You must set the CMake variable GENERATED_JAVAH")
- endif (NOT GENERATED_JAVAH)
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -Wall -O2 -D_GNU_SOURCE")
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_REENTRANT -D_FILE_OFFSET_BITS=64")
- include_directories(
- ${GENERATED_JAVAH}
- ${CMAKE_CURRENT_SOURCE_DIR}
- ${CMAKE_BINARY_DIR}
- ${JNI_INCLUDE_DIRS}
- main/native/
- )
- set(_FUSE_DFS_VERSION 0.1.0)
- CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/config.h.cmake ${CMAKE_BINARY_DIR}/config.h)
- add_dual_library(hdfs
- main/native/hdfs.c
- main/native/hdfsJniHelper.c
- )
- target_link_dual_libraries(hdfs
- ${JAVA_JVM_LIBRARY}
- )
- dual_output_directory(hdfs target/usr/local/lib)
- set(LIBHDFS_VERSION "0.0.0")
- set_target_properties(hdfs PROPERTIES
- SOVERSION ${LIBHDFS_VERSION})
- add_executable(hdfs_test
- main/native/hdfs_test.c
- )
- target_link_libraries(hdfs_test
- hdfs
- ${JAVA_JVM_LIBRARY}
- )
- output_directory(hdfs_test target/usr/local/bin)
- add_executable(hdfs_read
- main/native/hdfs_read.c
- )
- target_link_libraries(hdfs_read
- hdfs
- ${JAVA_JVM_LIBRARY}
- )
- output_directory(hdfs_read target/usr/local/bin)
- add_executable(hdfs_write
- main/native/hdfs_write.c
- )
- target_link_libraries(hdfs_write
- hdfs
- ${JAVA_JVM_LIBRARY}
- )
- output_directory(hdfs_write target/usr/local/bin)
- add_subdirectory(contrib/fuse-dfs/src)
|