Skip to content

Commit

Permalink
Merge branch 'master' into plotter
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge authored Oct 28, 2023
2 parents e52994d + 72ef268 commit 77ab75d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Initialize CodeQL
uses: github/codeql-action/init@0116bc2df50751f9724a2e35ef1f24d22f90e4e1 # v2.22.3
uses: github/codeql-action/init@49abf0ba24d0b7953cb586944e918a0b92074c80 # v2.22.4
with:
languages: ${{ matrix.language }}
- name: 'Install'
Expand All @@ -49,6 +49,6 @@ jobs:
- name: 'Build'
run: cmake --build 'build' --verbose --parallel 4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@0116bc2df50751f9724a2e35ef1f24d22f90e4e1 # v2.22.3
uses: github/codeql-action/analyze@49abf0ba24d0b7953cb586944e918a0b92074c80 # v2.22.4
with:
category: '/language:${{matrix.language}}'
2 changes: 1 addition & 1 deletion .github/workflows/openssf_scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ jobs:
path: results.sarif
retention-days: 5
- name: 'Upload Results'
uses: github/codeql-action/upload-sarif@0116bc2df50751f9724a2e35ef1f24d22f90e4e1 # v2.22.3
uses: github/codeql-action/upload-sarif@49abf0ba24d0b7953cb586944e918a0b92074c80 # v2.22.4
with:
sarif_file: results.sarif
10 changes: 10 additions & 0 deletions support/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,16 @@ elseif(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
target_compile_options(kalman_options INTERFACE "/EHsc" "/W4")
endif()

add_library(kalman_print INTERFACE)
target_sources(kalman_print INTERFACE FILE_SET "kalman_print_headers" TYPE
"HEADERS" FILES "print")

install(
TARGETS kalman_print
EXPORT "kalman-target"
FILE_SET "kalman_print_headers"
DESTINATION "include/fcarouge")

include(CheckSourceCompiles)
include(FetchContent)

Expand Down

0 comments on commit 77ab75d

Please sign in to comment.