1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2024-12-16 16:35:45 +00:00

CI: update CMake option names

Related to 52efefbb7d
This commit is contained in:
The Tumultuous Unicorn Of Darkness 2024-07-10 22:02:50 +02:00
parent 66c4e22162
commit af5f267ba3
No known key found for this signature in database
GPG key ID: 1E55EE2EFF18BC1A
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ jobs:
sudo apt-get install -y -qq cmake doxygen sudo apt-get install -y -qq cmake doxygen
- name: Generate build system - name: Generate build system
run: cmake -S . -B build -DENABLE_DOCS:BOOL=ON run: cmake -S . -B build -DLIBCPUID_ENABLE_DOCS=ON
- name: Run Doxygen - name: Run Doxygen
run: make -C build docs run: make -C build docs

View file

@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Generate build system - name: Generate build system
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX="" -DLIBCPUID_TESTS:BOOL=ON run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX="" -DLIBCPUID_ENABLE_TESTS=ON
- name: Build - name: Build
run: cmake --build build run: cmake --build build