9f2d870c2ebc54719578cdaf18addb5deaf36d29
[rrq/fuse_xattrs.git] / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
2 project(fuse_xattrs C)
3
4 set(FUSE_XATTRS_VERSION_MAJOR 0)
5 set(FUSE_XATTRS_VERSION_MINOR 2)
6
7 set(BINARY_SIDECAR_EXT \".xattr\")
8
9 set(MAX_METADATA_SIZE "8*1024*1024")  # 8 MiB
10 set(XATTR_NAME_MAX 255)               # chars in an extended attribute name
11 set(XATTR_SIZE_MAX 65536)             # size of an extended attribute value (64k)
12 set(XATTR_LIST_MAX 65536)             # size of extended attribute namelist (64k)
13
14 configure_file (
15         "${PROJECT_SOURCE_DIR}/fuse_xattrs_config.h.in"
16         "${PROJECT_BINARY_DIR}/fuse_xattrs_config.h"
17 )
18 include_directories(
19         "${PROJECT_BINARY_DIR}"
20 )
21
22 configure_file (
23         "${PROJECT_SOURCE_DIR}/fuse_xattrs.1.in"
24         "${PROJECT_BINARY_DIR}/fuse_xattrs.1"
25 )
26
27 # Check xattr headers
28 include (CheckIncludeFile)
29 check_include_file (sys/xattr.h HAVE_SYS_XATTR_H)
30 if(NOT HAVE_SYS_XATTR_H)
31     message(FATAL_ERROR "sys/xattr.h not found")
32 endif()
33
34 include (CheckCSourceCompiles)
35 check_c_source_compiles ("
36   #include <sys/types.h>
37   #include <attr/xattr.h>
38   int main() { return 1; }
39   " HAVE_ATTR_XATTR_H)
40 if(NOT HAVE_ATTR_XATTR_H)
41     message(FATAL_ERROR "attr/xattr.h not found")
42 endif()
43
44 # set required definitions
45 add_definitions (-D_FILE_OFFSET_BITS=64)
46
47 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMakeModules/")
48
49 option(ENABLE_CODECOVERAGE "Enable code coverage testing support" )
50 if(ENABLE_CODECOVERAGE)
51     include (CodeCoverage)
52     set(CMAKE_C_FLAGS "-g -O0 -fprofile-arcs -ftest-coverage")
53     setup_target_for_coverage(
54             fuse_xattrs_coverage
55             ./run_tests.sh
56             coverage
57     )
58 endif(ENABLE_CODECOVERAGE)
59
60 set(SOURCE_FILES
61         fuse_xattrs.c
62         passthrough.c
63         binary_storage.c
64         utils.c
65 )
66
67 add_executable(fuse_xattrs ${SOURCE_FILES})
68
69 target_link_libraries (
70         fuse_xattrs
71         fuse
72 )
73
74 install (TARGETS fuse_xattrs DESTINATION bin)
75 install (
76         FILES ${CMAKE_CURRENT_BINARY_DIR}/fuse_xattrs.1
77         DESTINATION man/man1
78         COMPONENT doc
79 )
80
81 enable_testing()
82 configure_file(run_tests.sh run_tests.sh COPYONLY)
83 configure_file(test/tests.py test/tests.py COPYONLY)
84 add_test(NAME integration
85         COMMAND run_tests.sh)