1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-09-28 22:40:43 +00:00
falk-werner_webfuse/CMakeLists.txt

94 lines
3.2 KiB
CMake
Raw Normal View History

2022-11-12 10:34:51 +00:00
cmake_minimum_required(VERSION 3.10)
project(webfuse VERSION 2.0.0)
2022-11-13 13:22:11 +00:00
set (CMAKE_CXX_STANDARD 17)
2022-11-12 11:29:30 +00:00
find_package(PkgConfig REQUIRED)
pkg_check_modules(FUSE REQUIRED IMPORTED_TARGET fuse3)
pkg_check_modules(LWS REQUIRED IMPORTED_TARGET libwebsockets)
add_library(webfuse_static STATIC
2022-11-13 13:17:47 +00:00
src/webfuse/webfuse.cpp
src/webfuse/provider.cpp
2022-11-13 17:18:44 +00:00
src/webfuse/fuse.cpp
2022-12-30 22:06:47 +00:00
src/webfuse/request_type.cpp
src/webfuse/response_type.cpp
2022-11-14 18:02:46 +00:00
src/webfuse/filesystem.cpp
2022-11-13 13:17:47 +00:00
src/webfuse/filesystem/status.cpp
src/webfuse/filesystem/accessmode.cpp
src/webfuse/filesystem/openflags.cpp
src/webfuse/filesystem/filemode.cpp
2022-11-13 17:18:44 +00:00
src/webfuse/filesystem/filesystem_statistics.cpp
src/webfuse/filesystem/empty_filesystem.cpp
2022-11-13 21:22:35 +00:00
src/webfuse/ws/config.cpp
src/webfuse/ws/server.cpp
src/webfuse/ws/client.cpp
src/webfuse/ws/messagewriter.cpp
src/webfuse/ws/messagereader.cpp
2022-11-13 13:17:47 +00:00
)
2022-11-12 11:29:30 +00:00
target_include_directories(webfuse_static PUBLIC src)
target_link_libraries(webfuse_static PUBLIC PkgConfig::FUSE PkgConfig::LWS)
2022-11-12 10:34:51 +00:00
add_executable(webfuse
src/main.cpp)
2022-11-12 11:29:30 +00:00
target_link_libraries(webfuse PRIVATE webfuse_static)
if(NOT(WITHOUT_PROVIDER))
add_executable(webfuse_provider
src/provider_main.cpp)
target_link_libraries(webfuse_provider PRIVATE webfuse_static)
endif()
2022-11-12 11:29:30 +00:00
if(NOT(WITHOUT_TEST))
2022-11-12 12:32:13 +00:00
pkg_check_modules(GTEST REQUIRED gtest_main)
pkg_check_modules(GMOCK REQUIRED gmock)
2022-11-12 11:29:30 +00:00
2023-01-01 12:01:35 +00:00
add_executable(unit_tests
test-src/unit/webfuse/test_app.cpp
test-src/unit/webfuse/test_request_type.cpp
test-src/unit/webfuse/test_response_type.cpp
test-src/unit/webfuse/filesystem/test_status.cpp
test-src/unit/webfuse/filesystem/test_accessmode.cpp
test-src/unit/webfuse/filesystem/test_openflags.cpp
test-src/unit/webfuse/filesystem/test_filemode.cpp
2022-11-12 11:29:30 +00:00
)
2023-01-01 12:01:35 +00:00
target_include_directories(unit_tests PRIVATE test-src/unit ${GTEST_INCLUDE_DIRS} ${GMOCK_INCLUDE_DIRS})
target_compile_options(unit_tests PRIVATE
2022-11-12 12:32:13 +00:00
${GTEST_CFLAGS} ${GTEST_CFLAGS_OTHER}
${GMOCK_CFLAGS} ${GMOCK_CFLAGS_OTHER}
)
2023-01-01 12:01:35 +00:00
target_link_libraries(unit_tests PRIVATE webfuse_static ${GTEST_LIBRARIES} ${GMOCK_LIBRARIES})
add_executable(integration_tests
test-src/integration/webfuse/test/tempdir.cpp
test-src/integration/webfuse/test/fixture.cpp
test-src/integration/webfuse/test/process.cpp
test-src/integration/webfuse/test/daemon.cpp
test-src/integration/test_access.cpp
2023-01-01 13:48:19 +00:00
test-src/integration/test_readdir.cpp
2023-01-01 12:01:35 +00:00
)
target_include_directories(integration_tests PRIVATE test-src/integration ${GTEST_INCLUDE_DIRS} ${GMOCK_INCLUDE_DIRS})
target_compile_options(integration_tests PRIVATE
${GTEST_CFLAGS} ${GTEST_CFLAGS_OTHER}
${GMOCK_CFLAGS} ${GMOCK_CFLAGS_OTHER}
)
target_link_libraries(integration_tests PRIVATE webfuse_static ${GTEST_LIBRARIES} ${GMOCK_LIBRARIES})
2022-11-12 11:29:30 +00:00
enable_testing()
2023-01-01 12:01:35 +00:00
add_test(NAME unit_tests COMMAND unit_tests)
add_test(NAME integration_tests COMMAND integration_tests)
2022-11-12 11:29:30 +00:00
2022-11-12 12:32:13 +00:00
find_program(VALGRIND valgrind REQUIRED)
if(VALGRIND)
2023-01-01 12:01:35 +00:00
add_custom_target(memcheck COMMAND valgrind --leak-check=full --error-exitcode=1 ./unit_tests)
2022-11-12 12:32:13 +00:00
endif()
endif()