X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=CMakeLists.txt;h=c61c483368afe83aa47486aac76385bfe67eea26;hb=6ca245e1d26401609f4811e90ffed40a09cb51bd;hp=9f2d870c2ebc54719578cdaf18addb5deaf36d29;hpb=21ea68ce16d0d7e0b7ea5bc0c688e3e0a2c9a357;p=rrq%2Ffuse_xattrs.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f2d870..c61c483 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8 FATAL_ERROR) project(fuse_xattrs C) set(FUSE_XATTRS_VERSION_MAJOR 0) -set(FUSE_XATTRS_VERSION_MINOR 2) +set(FUSE_XATTRS_VERSION_MINOR 3) set(BINARY_SIDECAR_EXT \".xattr\") @@ -46,6 +46,8 @@ add_definitions (-D_FILE_OFFSET_BITS=64) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMakeModules/") +set(CMAKE_C_FLAGS "-O3") + option(ENABLE_CODECOVERAGE "Enable code coverage testing support" ) if(ENABLE_CODECOVERAGE) include (CodeCoverage) @@ -74,7 +76,7 @@ target_link_libraries ( install (TARGETS fuse_xattrs DESTINATION bin) install ( FILES ${CMAKE_CURRENT_BINARY_DIR}/fuse_xattrs.1 - DESTINATION man/man1 + DESTINATION share/man/man1 COMPONENT doc )