forked from rpodgorny/unionfs-fuse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
45 lines (35 loc) · 1.21 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
project(unionfs-fuse C)
cmake_minimum_required(VERSION 2.0)
INCLUDE (CheckIncludeFiles)
# Set a default build type for single-configuration
# CMake generators if no build type is set.
IF(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE)
SET(CMAKE_BUILD_TYPE RelWithDebInfo)
ENDIF(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE)
# Select flags.
SET(CMAKE_C_FLAGS "-pipe -W -Wall -DFORTIFY_SOURCE=2")
SET(CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 -g")
SET(CMAKE_C_FLAGS_RELEASE "-O2")
SET(CMAKE_C_FLAGS_DEBUG "-O0 -g -DDEBUG")
if (UNIX AND APPLE)
include_directories("/usr/local/include/osxfuse/fuse")
endif()
add_definitions(-D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=26)
option(WITH_XATTR "Enable support for extended attributes" OFF)
# .h include files
IF (WITH_XATTR)
CHECK_INCLUDE_FILES("sys/xattr.h" HAVE_LIBC_XATTR)
CHECK_INCLUDE_FILES("attr/xattr.h" HAVE_LIBATTR_XATTR)
IF (HAVE_LIBC_XATTR)
add_definitions(-DLIBC_XATTR)
ELSEIF(HAVE_LIBATTR_XATTR)
add_definitions(-DLIBATTR_XATTR)
ENDIF()
IF (NOT HAVE_LIBC_XATTR AND NOT HAVE_LIBATTR_XATTR)
add_definitions(-DDISABLE_XATTR)
ENDIF()
ELSE (WITH_XATTR)
add_definitions(-DDISABLE_XATTR)
ENDIF (WITH_XATTR)
add_subdirectory(src)
add_subdirectory(man)