forced setting of HAVE_UTIMENSAT=1
[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 5)
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 <sys/xattr.h>
38   int main() { return 1; }
39   " HAVE_SYS_XATTR_H)
40 if(NOT HAVE_SYS_XATTR_H)
41     message(FATAL_ERROR "sys/xattr.h not found")
42 endif()
43
44 # set required definitions
45 add_definitions (-D_FILE_OFFSET_BITS=64)
46 add_definitions (-D HAVE_UTIMENSAT=1)
47
48 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMakeModules/")
49
50 set(CMAKE_C_FLAGS "-O3")
51
52 option(ENABLE_CODECOVERAGE "Enable code coverage testing support" )
53 if(ENABLE_CODECOVERAGE)
54     include (CodeCoverage)
55     set(CMAKE_C_FLAGS "-g -O0 -fprofile-arcs -ftest-coverage")
56     setup_target_for_coverage(
57             fuse_xattrs_coverage
58             ./run_tests.sh
59             coverage
60     )
61 endif(ENABLE_CODECOVERAGE)
62
63 set(SOURCE_FILES
64         fuse_xattrs.c
65         passthrough.c
66         binary_storage.c
67         utils.c
68 )
69
70 add_executable(fuse_xattrs ${SOURCE_FILES})
71
72 if(APPLE)
73     target_link_libraries (
74             fuse_xattrs
75             osxfuse
76     )
77 else()
78     target_link_libraries (
79             fuse_xattrs
80             fuse
81     )
82 endif()
83
84
85 install (TARGETS fuse_xattrs DESTINATION bin)
86 install (
87         FILES ${CMAKE_CURRENT_BINARY_DIR}/fuse_xattrs.1
88         DESTINATION share/man/man1
89         COMPONENT doc
90 )
91
92 enable_testing()
93 configure_file(run_tests.sh run_tests.sh COPYONLY)
94 configure_file(test/tests.py test/tests.py COPYONLY)
95 add_test(NAME integration
96         COMMAND run_tests.sh)