Skip to content

Commit

Permalink
Fix errors #6
Browse files Browse the repository at this point in the history
  • Loading branch information
eliaskosunen committed Mar 3, 2022
1 parent f708d47 commit d84913c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Fuzz
on: [ push, pull_request ]

jobs:
install:
fuzz:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -30,7 +30,7 @@ jobs:
mkdir ${{ runner.workspace }}/build
cd ${{ runner.workspace }}/build
cmake -DSCN_EXAMPLES=OFF -DSCN_BENCHMARKS=OFF \
cmake -DSCN_EXAMPLES=OFF -DSCN_BENCHMARKS=OFF -DSCN_BUILD_FUZZING=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
$GITHUB_WORKSPACE
make -k -j2
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ if (SCN_INSTALL)
write_basic_package_version_file(
"${CMAKE_CURRENT_BINARY_DIR}/scnConfigVersion.cmake"
VERSION ${SCN_VERSION}
COMPATIBILITY ExactVersion)
COMPATIBILITY SameMajorVersion)
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/config.cmake.in"
"${CMAKE_CURRENT_BINARY_DIR}/scnConfig.cmake"
Expand Down

0 comments on commit d84913c

Please sign in to comment.