Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ repos:
- id: check-added-large-files

- repo: https://github.com/cpp-linter/cpp-linter-hooks
rev: v1.4.1
rev: v1.5.0
hooks:
- id: clang-format
name: clang-format (C/C++)
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -251,11 +251,11 @@ find_package(PkgConfig REQUIRED)
if(linyaps-box_ENABLE_SECCOMP)
pkg_check_modules(libseccomp REQUIRED IMPORTED_TARGET libseccomp>=2.3.3)
list(APPEND linyaps-box_LIBRARY_LINK_LIBRARIES PUBLIC PkgConfig::libseccomp)
#TODO: detect seccomp_arch_resolve_name and use if available
# TODO: detect seccomp_arch_resolve_name and use if available
endif()

if(linyaps-box_ENABLE_CAP)
#TODO: remove libcap and implement it by ourself
# TODO: remove libcap and implement it by ourself
pkg_check_modules(libcap REQUIRED IMPORTED_TARGET libcap>=2.25)
list(APPEND linyaps-box_LIBRARY_LINK_LIBRARIES PUBLIC PkgConfig::libcap)
endif()
Expand Down
Loading