docs: update doxyfile, remove old options (#433) #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Package | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
cmake: | |
name: CMake package (${{ matrix.build_type }}, ${{ matrix.library_type }}) | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: true | |
matrix: | |
build_type: ["Debug", "Release"] | |
library_type: ["static", "shared"] | |
env: | |
CMAKE_GENERATOR: Ninja | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: aminya/setup-cpp@v1 | |
with: | |
ninja: true | |
- name: Build and install open62541 & open62541pp | |
run: | | |
mkdir build | |
cd build | |
cmake -G Ninja \ | |
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ | |
-DBUILD_SHARED_LIBS=${{ matrix.library_type == 'shared' }} \ | |
.. | |
cmake --build . | |
sudo cmake --install . | |
- name: Build examples (stand-alone) | |
run: | | |
mkdir build_examples | |
cd build_examples | |
cmake -G Ninja --debug-find ../examples | |
cmake --build . |