2019-01-27 02:45:03 +00:00
|
|
|
cmake_minimum_required (VERSION 2.8)
|
|
|
|
project(fuse-wsfs)
|
|
|
|
|
2019-01-30 20:53:57 +00:00
|
|
|
option(WITH_TESTS "enable unit tests" OFF)
|
|
|
|
|
2019-01-27 02:45:03 +00:00
|
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
pkg_check_modules(FUSE3 REQUIRED fuse3)
|
|
|
|
pkg_check_modules(LWS REQUIRED libwebsockets)
|
|
|
|
pkg_check_modules(JANSSON REQUIRED jansson)
|
|
|
|
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -pedantic -Wextra")
|
|
|
|
|
|
|
|
set(EXTRA_INCLUDE_DIRS
|
2019-02-05 23:58:51 +00:00
|
|
|
"inc"
|
2019-01-27 02:45:03 +00:00
|
|
|
${FUSE3_INCLUDE_DIRS}
|
|
|
|
${LWS_INCLUDE_DIRS}
|
|
|
|
${JANSSON_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(EXTRA_LIBS
|
|
|
|
${EXTRA_LIBS}
|
|
|
|
${FUSE3_LIBRARIES}
|
|
|
|
${LWS_LIBRARIES}
|
|
|
|
${JANSSON_LIBRARIES}
|
|
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(EXTRA_CFLAGS
|
|
|
|
${FUSE3_CFLAGS_OTHER}
|
|
|
|
${LWS_CFLAGS_OTHER}
|
|
|
|
${JANSSON_CFLAGS_OTHER}
|
|
|
|
"-pthread"
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
# libfuse-wsfs
|
|
|
|
|
|
|
|
add_library(fuse-wsfs
|
2019-01-29 22:11:46 +00:00
|
|
|
src/wsfs/status.c
|
2019-02-05 23:58:51 +00:00
|
|
|
src/wsfs/filesystem.c
|
2019-02-09 02:08:02 +00:00
|
|
|
src/wsfs/server.c
|
|
|
|
src/wsfs/message.c
|
|
|
|
src/wsfs/message_queue.c
|
2019-02-09 18:02:53 +00:00
|
|
|
src/wsfs/time/timepoint.c
|
|
|
|
src/wsfs/time/timer.c
|
|
|
|
src/wsfs/time/timeout_manager.c
|
2019-02-03 18:10:05 +00:00
|
|
|
src/wsfs/operation/lookup.c
|
2019-01-29 22:11:46 +00:00
|
|
|
src/wsfs/operation/getattr.c
|
|
|
|
src/wsfs/operation/readdir.c
|
|
|
|
src/wsfs/operation/open.c
|
2019-01-29 22:47:08 +00:00
|
|
|
src/wsfs/operation/close.c
|
2019-01-29 22:11:46 +00:00
|
|
|
src/wsfs/operation/read.c
|
2019-02-05 23:58:51 +00:00
|
|
|
src/wsfs/server_config.c
|
|
|
|
src/wsfs/server_protocol.c
|
2019-02-09 02:08:02 +00:00
|
|
|
src/wsfs/jsonrpc/server.c
|
|
|
|
src/wsfs/jsonrpc/method.c
|
|
|
|
src/wsfs/jsonrpc/request.c
|
|
|
|
src/wsfs/jsonrpc/response.c
|
|
|
|
src/wsfs/jsonrpc/util.c
|
2019-01-27 02:45:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
target_include_directories(fuse-wsfs PUBLIC src ${EXTRA_INCLUDE_DIRS})
|
|
|
|
target_compile_options(fuse-wsfs PUBLIC ${EXTRA_CFLAGS})
|
|
|
|
|
|
|
|
# app
|
|
|
|
|
|
|
|
add_executable(wsfs
|
|
|
|
src/app/main.c
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(wsfs PUBLIC fuse-wsfs ${EXTRA_LIBS})
|
2019-02-05 23:58:51 +00:00
|
|
|
target_include_directories(wsfs PUBLIC ${EXTRA_INCLUDE_DIRS})
|
2019-01-27 02:45:03 +00:00
|
|
|
target_compile_options(wsfs PUBLIC ${EXTRA_CFLAGS})
|
|
|
|
|
|
|
|
# tests
|
2019-01-30 20:53:57 +00:00
|
|
|
|
|
|
|
if(WITH_TESTS)
|
|
|
|
|
|
|
|
pkg_check_modules(GTEST gtest_main)
|
|
|
|
|
2019-01-27 02:45:03 +00:00
|
|
|
add_executable(alltests
|
2019-01-30 20:53:57 +00:00
|
|
|
test-src/test_response_parser.cc
|
2019-01-30 21:28:50 +00:00
|
|
|
test-src/test_server.cc
|
2019-02-09 18:02:53 +00:00
|
|
|
test-src/test_timepoint.cc
|
|
|
|
test-src/test_timer.cc
|
2019-01-27 02:45:03 +00:00
|
|
|
)
|
|
|
|
|
2019-01-30 20:53:57 +00:00
|
|
|
target_link_libraries(alltests PUBLIC fuse-wsfs ${EXTRA_LIBS} ${GTEST_LIBRARIES})
|
|
|
|
target_include_directories(alltests PUBLIC src ${EXTRA_INCLUDE_DIRS} ${GTEST_INCLUDE_DIRS})
|
|
|
|
target_compile_options(alltests PUBLIC ${EXTRA_CFLAGS} ${GTEST_CFLAGS})
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
add_test(alltests alltests)
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2019-01-30 20:53:57 +00:00
|
|
|
endif(WITH_TESTS)
|