Skip to content

Adjusted the path to look for the openSSL .pc file #45

Adjusted the path to look for the openSSL .pc file

Adjusted the path to look for the openSSL .pc file #45

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install cmake
run: sudo apt-get update && sudo apt-get -y install cmake meson
# Clear any left over from a previous run
- name: CMake setup
run: make cleanAll
# Run the cmake setup for a Natve build
- name: CMake setup
run: make configureDebug
# Build it!
- name: Build
run: make build