encfs/CMakeLists.txt

391 lines
13 KiB
CMake
Raw Normal View History

2018-03-26 22:09:57 +02:00
set(CMAKE_LEGACY_CYGWIN_WIN32 0)
# 3.0.2 preferred, but we can often get by with 2.8.
2015-08-20 05:11:40 +02:00
cmake_minimum_required(VERSION 2.8)
if (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION} LESS 3.0.2)
message(WARNING "You should use cmake 3.0.2 or newer for configuration to run correctly.")
endif()
2015-06-14 07:08:13 +02:00
project(EncFS C CXX)
set (ENCFS_MAJOR 1)
set (ENCFS_MINOR 9)
2018-04-27 10:52:22 +02:00
set (ENCFS_PATCH 5)
2015-06-18 08:19:15 +02:00
set (ENCFS_VERSION "${ENCFS_MAJOR}.${ENCFS_MINOR}.${ENCFS_PATCH}")
2016-09-16 02:14:26 +02:00
set (ENCFS_SOVERSION "${ENCFS_MAJOR}.${ENCFS_MINOR}")
2015-06-14 07:08:13 +02:00
set (ENCFS_NAME "Encrypted Filesystem")
2017-03-25 13:50:56 +01:00
option(IWYU "Build with IWYU analysis." OFF)
2015-06-18 05:33:57 +02:00
2015-06-14 07:08:13 +02:00
set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH}
"${CMAKE_CURRENT_LIST_DIR}/cmake")
2015-06-14 07:08:13 +02:00
set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH}
"${CMAKE_CURRENT_LIST_DIR}/vendor/github.com/muflihun/easyloggingpp/cmake")
2017-08-06 18:40:44 +02:00
option (BUILD_UNIT_TESTS "build EncFS unit tests" ON)
2016-09-05 21:09:30 +02:00
option (USE_INTERNAL_TINYXML "use built-in TinyXML2" ON)
option (USE_INTERNAL_EASYLOGGING "use built-in Easylogging++" ON)
option (BUILD_SHARED_LIBS "build internal libraries as shared" OFF)
2020-03-03 22:48:28 +01:00
if (APPLE)
option (ENABLE_NLS "compile with Native Language Support (using gettext)" OFF)
else()
option (ENABLE_NLS "compile with Native Language Support (using gettext)" ON)
endif()
2016-09-05 23:13:21 +02:00
option (INSTALL_LIBENCFS "install libencfs" OFF)
2017-08-04 06:22:40 +02:00
option (LINT "enable lint output" OFF)
if (NOT DEFINED LIB_INSTALL_DIR)
set (LIB_INSTALL_DIR lib)
endif ()
if (CYGWIN)
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set (CMAKE_INSTALL_PREFIX /usr)
endif()
endif()
2015-06-14 07:08:13 +02:00
# We need C++ 11
2015-08-20 05:11:40 +02:00
if (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 3.0)
# CMake 3.1 has built-in CXX standard checks.
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED on)
else ()
if (CMAKE_COMPILER_IS_GNUCXX)
2016-04-26 06:10:41 +02:00
message ("** Assuming that GNU CXX uses -std=c++11 flag for C++11 compatibility.")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
2016-09-08 21:50:12 +02:00
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
message ("** Assuming that Clang uses -std=c++11 flag for C++11 compatibility.")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
2015-08-20 05:11:40 +02:00
else()
2016-04-26 06:10:41 +02:00
message ("** No CMAKE C++11 check. If the build breaks, you're on your own.")
2015-08-20 05:11:40 +02:00
endif()
endif ()
# Let's enable some compilation warnings
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra")
# Let's enable some shared lib flags
if (BUILD_SHARED_LIBS)
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
endif ()
2016-09-05 21:09:30 +02:00
add_definitions( -DPACKAGE="encfs" )
2015-08-20 05:11:40 +02:00
# http://www.cmake.org/Wiki/CMake_RPATH_handling#Mac_OS_X_and_the_RPATH
if (APPLE)
set(CMAKE_MACOSX_RPATH ON)
set(CMAKE_SKIP_BUILD_RPATH FALSE)
set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${LIB_INSTALL_DIR}")
2015-08-20 05:11:40 +02:00
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/${LIB_INSTALL_DIR}" isSystemDir)
2015-08-20 05:11:40 +02:00
if("${isSystemDir}" STREQUAL "-1")
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${LIB_INSTALL_DIR}")
2015-08-20 05:11:40 +02:00
endif()
endif()
2015-06-14 07:08:13 +02:00
2018-03-26 22:09:57 +02:00
if (CYGWIN OR WIN32 OR APPLE)
set(DEFAULT_CASE_INSENSITIVE TRUE)
else()
set(DEFAULT_CASE_INSENSITIVE FALSE)
endif()
2018-03-26 23:19:52 +02:00
if (CYGWIN)
find_program(PKILL NAMES "pkill")
if(NOT PKILL)
message(FATAL_ERROR "pkill not found, please install procps-ng package.")
endif()
endif()
2015-06-14 07:08:13 +02:00
# Check for FUSE.
find_package (FUSE REQUIRED)
include_directories (${FUSE_INCLUDE_DIR})
2017-10-11 08:15:00 +02:00
add_definitions (-D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=29)
2018-03-26 22:09:57 +02:00
if (CYGWIN)
# Cygwin build is intended to use WinFsp
add_definitions(-DCYGFUSE)
endif()
2015-06-14 07:08:13 +02:00
# Check for OpenSSL.
2020-03-03 22:48:28 +01:00
if (APPLE AND NOT DEFINED OPENSSL_ROOT_DIR)
# Search both Brew and Macports
set(OPENSSL_ROOT_DIR "/usr/local/opt/openssl;/opt/local")
endif()
2015-06-14 07:08:13 +02:00
find_package (OpenSSL REQUIRED)
include_directories (${OPENSSL_INCLUDE_DIR})
2015-06-14 07:08:13 +02:00
find_program (POD2MAN pod2man)
# Check for include files and stdlib properties.
include (CheckIncludeFileCXX)
2018-03-26 23:20:32 +02:00
if (NOT CYGWIN)
check_include_file_cxx (attr/xattr.h HAVE_ATTR_XATTR_H)
check_include_file_cxx (sys/xattr.h HAVE_SYS_XATTR_H)
endif()
2015-06-14 07:08:13 +02:00
include(CheckStructHasMember)
2017-10-04 08:01:51 +02:00
check_struct_has_member("struct dirent" d_type dirent.h HAVE_DIRENT_D_TYPE LANGUAGE CXX)
2015-06-14 07:08:13 +02:00
# Check if xattr functions take extra arguments, as they do on OSX.
include (CheckCXXSourceCompiles)
check_cxx_source_compiles ("#include <sys/types.h>
#include <sys/xattr.h>
int main() { getxattr(0,0,0,0,0,0); return 1; }
" XATTR_ADD_OPT)
# If awailable on current architecture (typically embedded 32-bit), link with it explicitly;
# GCC autodetection is faulty, see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81358 and
# find_libray is no great help here since it is sometimes(!) not in standard paths.
set(CMAKE_REQUIRED_FLAGS "-latomic")
CHECK_CXX_SOURCE_COMPILES("int main() {return 0;}" COMPILER_NEEDS_LATOMIC)
if(COMPILER_NEEDS_LATOMIC)
set(ATOMIC_LIBRARY atomic)
endif()
# compensate the effect of extra linking of libatomic on platforms where intrinsics are used
set(CMAKE_REQUIRED_FLAGS "-Wl,--as-needed")
CHECK_CXX_SOURCE_COMPILES("int main() {return 0;}" LINKER_SUPPORTS_WLASNEEDED)
if(LINKER_SUPPORTS_WLASNEEDED)
SET(EXTRA_LINKER_FLAGS "-Wl,--as-needed")
endif()
set(CMAKE_REQUIRED_FLAGS)
2016-05-13 22:33:23 +02:00
# Check if we have some standard functions.
2015-06-14 07:08:13 +02:00
include (CheckFuncs)
check_function_exists_glibc (lchmod HAVE_LCHMOD)
2016-05-13 22:33:23 +02:00
check_function_exists_glibc (utimensat HAVE_UTIMENSAT)
if (APPLE)
message ("-- There is no usable FDATASYNC on Apple")
set(HAVE_FDATASYNC FALSE)
else()
check_function_exists_glibc (fdatasync HAVE_FDATASYNC)
endif (APPLE)
2015-06-14 07:08:13 +02:00
set (CMAKE_THREAD_PREFER_PTHREAD)
find_package (Threads REQUIRED)
2015-06-18 05:33:57 +02:00
# Logging.
add_definitions (-DELPP_THREAD_SAFE -DELPP_DISABLE_DEFAULT_CRASH_HANDLING)
2016-09-16 01:38:40 +02:00
add_definitions (-DELPP_NO_DEFAULT_LOG_FILE)
2018-03-19 21:38:59 +01:00
add_definitions (-DELPP_CUSTOM_COUT=std::cerr)
2015-06-18 05:33:57 +02:00
check_include_file_cxx (syslog.h HAVE_SYSLOG_H)
if (HAVE_SYSLOG_H)
message ("-- Enabled syslog logging support")
add_definitions(-DELPP_SYSLOG)
endif (HAVE_SYSLOG_H)
2015-06-14 07:08:13 +02:00
# Packaging config.
set (CPACK_PACKAGE_NAME "encfs")
set (CPACK_PACKAGE_VERSION_MAJOR ${ENCFS_MAJOR})
set (CPACK_PACKAGE_VERSION_MINOR ${ENCFS_MINOR})
set (CPACK_SOURCE_GENERATOR TGZ)
set (CPACK_SOURCE_IGNORE_FILES
"/build/")
include (CPack)
# Compile-time configuration.
configure_file (${CMAKE_CURRENT_LIST_DIR}/config.h.cmake
2015-06-14 07:08:13 +02:00
${CMAKE_BINARY_DIR}/config.h)
include_directories (${CMAKE_BINARY_DIR})
include_directories (${CMAKE_CURRENT_LIST_DIR})
2015-06-14 07:08:13 +02:00
2016-09-05 21:09:30 +02:00
# Translations
if (ENABLE_NLS)
2016-09-13 22:09:13 +02:00
find_package (Intl)
if (Intl_FOUND)
include_directories (${Intl_INCLUDE_DIRS})
2016-09-13 22:09:13 +02:00
endif()
2016-09-05 21:09:30 +02:00
add_subdirectory(po)
add_definitions(-DENABLE_NLS)
add_definitions(-DLOCALEDIR="${CMAKE_INSTALL_PREFIX}/share/locale")
endif (ENABLE_NLS)
2020-02-23 16:45:07 +01:00
find_program(CLANG_TIDY_EXE NAMES "clang-tidy-4.0" "clang-tidy40" "clang-tidy" DOC "Path to clang-tidy executable")
if(NOT CLANG_TIDY_EXE)
message(STATUS "clang-tidy not found.")
else()
2020-02-23 16:45:07 +01:00
message(STATUS "clang-tidy found: ${CLANG_TIDY_EXE}")
string(CONCAT TIDY_OPTS "-checks=*"
",-cert-err58-cpp"
",-cppcoreguidelines-pro-*"
",-google-build-using-namespace"
",-google-readability-casting"
",-google-readability-todo"
",-google-runtime-int"
",-google-runtime-references"
",-modernize-loop-convert"
",-performance-inefficient-string-concatenation"
",-readability-inconsistent-declaration-parameter-name"
",-readability-named-parameter"
)
set(DO_CLANG_TIDY "${CLANG_TIDY_EXE}" ${TIDY_OPTS})
#set(DO_CLANG_TIDY "${CLANG_TIDY_EXE}" "-fix" "-checks=-*,google-readability-redundant-smartptr-get")
2017-08-04 06:22:40 +02:00
endif()
2017-08-06 07:59:49 +02:00
if (USE_INTERNAL_TINYXML)
2017-08-06 08:20:33 +02:00
message("-- Using vendored TinyXML2")
2017-08-06 07:59:49 +02:00
set(TINYXML_DIR vendor/github.com/leethomason/tinyxml2)
if (BUILD_SHARED_LIBS)
set(BUILD_STATIC_LIBS OFF CACHE BOOL "build static libs")
set(BUILD_SHARED_LIBS ON CACHE BOOL "build shared libs")
set(TINYXML_LIBRARIES tinyxml2)
else ()
set(BUILD_STATIC_LIBS ON CACHE BOOL "build static libs")
set(BUILD_SHARED_LIBS OFF CACHE BOOL "build shared libs")
set(TINYXML_LIBRARIES tinyxml2_static)
endif ()
2017-08-06 07:59:49 +02:00
set(BUILD_TESTS OFF CACHE BOOL "build tests")
add_subdirectory(${TINYXML_DIR} EXCLUDE_FROM_ALL)
include_directories(${CMAKE_CURRENT_LIST_DIR}/${TINYXML_DIR})
2017-08-06 08:20:33 +02:00
link_directories(${CMAKE_BINARY_DIR}/${TINYXML_DIR})
2017-08-06 07:59:49 +02:00
else ()
find_package (TinyXML REQUIRED)
include_directories (${TINYXML_INCLUDE_DIR})
2017-08-06 07:59:49 +02:00
endif ()
if (USE_INTERNAL_EASYLOGGING)
message("-- Using vendored Easylogging++")
set(EASYLOGGING_DIR vendor/github.com/muflihun/easyloggingpp)
set(build_static_lib ON CACHE BOOL "build static libs")
add_subdirectory(${EASYLOGGING_DIR} EXCLUDE_FROM_ALL)
include_directories(${CMAKE_CURRENT_LIST_DIR}/${EASYLOGGING_DIR}/src)
link_directories(${CMAKE_BINARY_DIR}/${EASYLOGGING_DIR})
set(EASYLOGGINGPP_LIBRARY easyloggingpp)
else ()
set(EASYLOGGINGPP_USE_SHARED_LIBS ON CACHE BOOL "look for shared lib")
find_package (EASYLOGGINGPP REQUIRED)
include_directories (${EASYLOGGINGPP_INCLUDE_DIR})
endif ()
2017-08-06 08:20:33 +02:00
2015-06-14 07:08:13 +02:00
set(SOURCE_FILES
encfs/autosprintf.cpp
encfs/base64.cpp
encfs/BlockFileIO.cpp
encfs/BlockNameIO.cpp
encfs/Cipher.cpp
encfs/CipherFileIO.cpp
encfs/CipherKey.cpp
encfs/ConfigReader.cpp
encfs/ConfigVar.cpp
encfs/Context.cpp
encfs/DirNode.cpp
encfs/encfs.cpp
2015-06-18 05:33:57 +02:00
encfs/Error.cpp
2015-06-14 07:08:13 +02:00
encfs/FileIO.cpp
encfs/FileNode.cpp
encfs/FileUtils.cpp
encfs/Interface.cpp
encfs/MACFileIO.cpp
encfs/MemoryPool.cpp
encfs/NameIO.cpp
encfs/NullCipher.cpp
encfs/NullNameIO.cpp
encfs/openssl.cpp
encfs/RawFileIO.cpp
encfs/readpassphrase.cpp
encfs/SSL_Cipher.cpp
encfs/StreamNameIO.cpp
encfs/XmlReader.cpp
2015-06-14 07:08:13 +02:00
)
add_library(encfs ${SOURCE_FILES})
set_target_properties(encfs PROPERTIES
VERSION ${ENCFS_VERSION}
SOVERSION ${ENCFS_SOVERSION})
2015-06-16 06:10:48 +02:00
target_link_libraries(encfs
${EXTRA_LINKER_FLAGS}
2015-06-14 07:08:13 +02:00
${FUSE_LIBRARIES}
${OPENSSL_LIBRARIES}
${TINYXML_LIBRARIES}
${EASYLOGGINGPP_LIBRARY}
2015-06-14 07:08:13 +02:00
${CMAKE_THREAD_LIBS_INIT}
2016-09-13 22:09:13 +02:00
${Intl_LIBRARIES}
${ATOMIC_LIBRARY}
2015-06-14 07:08:13 +02:00
)
2016-09-05 23:13:21 +02:00
if (INSTALL_LIBENCFS)
install (TARGETS encfs DESTINATION ${LIB_INSTALL_DIR})
2016-09-05 23:13:21 +02:00
endif (INSTALL_LIBENCFS)
2015-06-14 07:08:13 +02:00
2015-06-18 05:33:57 +02:00
if (IWYU)
if (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 3.2)
find_program(iwyu_path NAMES include-what-you-use iwyu)
if (iwyu_path)
message ("-- Enabled IWYU")
set_property(TARGET encfs PROPERTY CXX_INCLUDE_WHAT_YOU_USE ${iwyu_path})
endif()
endif()
endif()
# Set RPATH to library install path.
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${LIB_INSTALL_DIR}")
2015-06-16 06:10:48 +02:00
add_executable (encfs-bin encfs/main.cpp)
target_link_libraries (encfs-bin encfs)
set_target_properties (encfs-bin PROPERTIES OUTPUT_NAME "encfs")
2015-06-16 19:18:10 +02:00
install (TARGETS encfs-bin DESTINATION bin)
2015-06-14 07:08:13 +02:00
2017-08-04 06:22:40 +02:00
if(LINT AND CLANG_TIDY_EXE)
set_target_properties(encfs PROPERTIES CXX_CLANG_TIDY "${DO_CLANG_TIDY}")
set_target_properties(encfs-bin PROPERTIES CXX_CLANG_TIDY "${DO_CLANG_TIDY}")
endif()
2015-06-14 07:08:13 +02:00
add_executable (encfsctl encfs/encfsctl.cpp)
2015-06-16 06:10:48 +02:00
target_link_libraries (encfsctl encfs)
install (TARGETS encfsctl DESTINATION bin)
2015-06-14 07:08:13 +02:00
add_executable (makekey encfs/makeKey.cpp)
2015-06-16 06:10:48 +02:00
target_link_libraries (makekey encfs)
2015-06-14 07:08:13 +02:00
add_executable (checkops encfs/test.cpp)
2015-06-16 06:10:48 +02:00
target_link_libraries (checkops encfs)
2015-06-14 07:08:13 +02:00
install (PROGRAMS encfs/encfssh DESTINATION bin)
2015-06-14 07:08:13 +02:00
# Reference all headers, to make certain IDEs happy.
file (GLOB_RECURSE all_headers ${CMAKE_CURRENT_LIST_DIR}/*.h)
2015-06-14 07:08:13 +02:00
add_custom_target (all_placeholder SOURCES ${all_headers})
if (POD2MAN)
2017-08-06 11:26:09 +02:00
set (MAN_DESTINATION "share/man/man1")
if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
set (MAN_DESTINATION "man/man1")
endif()
2015-06-14 07:08:13 +02:00
add_custom_target (encfs-man ALL
COMMAND ${POD2MAN} -u --section=1 --release=${ENCFS_VERSION} --center=${ENCFS_NAME}
${CMAKE_CURRENT_LIST_DIR}/encfs/encfs.pod encfs.1)
2015-06-14 07:08:13 +02:00
add_custom_target (encfsctl-man ALL
COMMAND ${POD2MAN} -u --section=1 --release=${ENCFS_VERSION} --center=${ENCFS_NAME}
${CMAKE_CURRENT_LIST_DIR}/encfs/encfsctl.pod encfsctl.1)
2015-06-14 07:08:13 +02:00
2017-09-30 20:15:25 +02:00
add_custom_target (encfssh-man ALL
COMMAND ${POD2MAN} -u --section=1 --release=${ENCFS_VERSION} --center=${ENCFS_NAME}
${CMAKE_CURRENT_LIST_DIR}/encfs/encfssh.pod encfssh.1)
install (FILES ${CMAKE_BINARY_DIR}/encfs.1 ${CMAKE_BINARY_DIR}/encfsctl.1 ${CMAKE_BINARY_DIR}/encfssh.1
2017-08-06 11:26:09 +02:00
DESTINATION ${MAN_DESTINATION})
2015-06-14 07:08:13 +02:00
endif (POD2MAN)
2017-08-06 18:40:44 +02:00
if (BUILD_UNIT_TESTS)
enable_testing()
2017-08-06 18:40:44 +02:00
set(GOOGLETEST_DIR vendor/github.com/google/googletest)
add_subdirectory(${GOOGLETEST_DIR} EXCLUDE_FROM_ALL)
2017-08-06 18:40:44 +02:00
link_directories(${CMAKE_BINARY_DIR}/${GOOGLETEST_DIR}/googletest)
set(GOOGLEBENCH_DIR vendor/github.com/google/benchmark)
set(BENCHMARK_ENABLE_TESTING OFF CACHE BOOL "benchmark tests")
add_subdirectory(${GOOGLEBENCH_DIR} EXCLUDE_FROM_ALL)
2017-08-06 18:40:44 +02:00
link_directories(${CMAKE_BINARY_DIR}/${GOOGLEBENCH_DIR})
# Unit tests.
add_subdirectory(test EXCLUDE_FROM_ALL)
2017-08-06 18:47:33 +02:00
# Integration test target - runs against built encfs.
add_custom_target(integration COMMAND ${CMAKE_CURRENT_LIST_DIR}/integration.sh)
2017-08-06 18:40:44 +02:00
endif ()