We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6416b7b commit e3990f2Copy full SHA for e3990f2
.github/workflows/build_binaries_cmake.yml
@@ -38,7 +38,7 @@ jobs:
38
build_physiboss: "ON"
39
- os: macos-latest
40
c_compiler: cc
41
- cpp_compiler: cc++
+ cpp_compiler: c++
42
43
44
steps:
@@ -51,6 +51,12 @@ jobs:
51
run: |
52
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
53
54
+ - name: Install dependencies (Linux)
55
+ if: runner.os == 'Linux'
56
+ run: |
57
+ sudo apt-get update
58
+ sudo apt-get install -y libomp-dev
59
+
60
- name: Configure CMake
61
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
62
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
0 commit comments