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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ ci:
autoupdate_schedule: quarterly
repos:
- repo: https://github.com/BlankSpruce/gersemi-pre-commit
rev: 0.27.1
rev: 0.27.7
hooks:
- id: gersemi
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.10
rev: v0.15.20
hooks:
- id: ruff-check
- id: ruff-format
Expand All @@ -15,7 +15,7 @@ repos:
hooks:
- id: toml-sort-fix
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v22.1.3
rev: v22.1.5
hooks:
- id: clang-format
args:
Expand Down
6 changes: 2 additions & 4 deletions cmake_modules/FindQGV.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ find_library(
QGV_LIBRARY
NAMES QGVCore libQGVCore
PATHS /usr/lib /usr/local/lib
HINTS
${QGV_PKG_LIBRARY_DIRS} # Generated by pkg-config
HINTS ${QGV_PKG_LIBRARY_DIRS} # Generated by pkg-config
)
if(NOT (QGV_LIBRARY))
message(STATUS "Could not find libQGVCore.")
Expand All @@ -44,8 +43,7 @@ find_path(
QGV_INCLUDE_DIR
NAMES QGVCore.h
PATHS /usr/include/qgv /usr/local/include/qgv
HINTS
${QGV_PKG_INCLUDE_DIR} # Generated by pkg-config
HINTS ${QGV_PKG_INCLUDE_DIR} # Generated by pkg-config
)
if(NOT (QGV_INCLUDE_DIR))
message(STATUS "Could not find QGV headers.")
Expand Down