Skip to content

Commit

Permalink
Improve CMakelists.txt to compile on Linux and Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
ram-mohan committed Oct 31, 2023
1 parent eeec5e5 commit 1359ac2
Show file tree
Hide file tree
Showing 6 changed files with 239 additions and 236 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ jobs:
cc: gcc
cxx: g++
build-system: cmake
cmake-opts: '-DENABLE_FUZZERS=OFF'
cmake-opts: '-DUHDR_BUILD_TESTS=1 -DUHDR_BUILD_FUZZERS=0'

- name: ubuntu-latest-clang-cmake
os: ubuntu-latest
cc: clang
cxx: clang++
build-system: cmake
cmake-opts: '-DENABLE_FUZZERS=ON'
cmake-opts: '-DUHDR_BUILD_TESTS=1 -DUHDR_BUILD_FUZZERS=1'

- name: macos-latest-clang-cmake
os: macos-latest
cc: clang
cxx: clang++
build-system: cmake
cmake-opts: '-DENABLE_FUZZERS=OFF'
cmake-opts: '-DUHDR_BUILD_TESTS=1 -DUHDR_BUILD_FUZZERS=0'

runs-on: ${{ matrix.os }}

Expand Down
Loading

0 comments on commit 1359ac2

Please sign in to comment.