mirror of
https://github.com/redstrate/Novus.git
synced 2025-05-19 06:47:44 +00:00
Add KCoreAddons
This commit is contained in:
parent
7564b3483e
commit
a4bf9f8d2e
1 changed files with 10 additions and 1 deletions
11
.github/workflows/cmake-multi-platform.yml
vendored
11
.github/workflows/cmake-multi-platform.yml
vendored
|
@ -42,7 +42,7 @@ jobs:
|
|||
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
|
||||
echo "prefix-dir=${{ github.workspace }}/prefix" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Clone ECM
|
||||
- name: Clone Extra CMake Modules
|
||||
run: |
|
||||
git clone https://invent.kde.org/frameworks/extra-cmake-modules.git
|
||||
|
||||
|
@ -51,6 +51,15 @@ jobs:
|
|||
cmake -B ${{ steps.strings.outputs.build-output-dir }}-ECM -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -S extra-cmake-modules -DCMAKE_INSTALL_PREFIX=${{ steps.strings.outputs.prefix-dir }}
|
||||
cmake --install ${{ steps.strings.outputs.build-output-dir }}-ECM
|
||||
|
||||
- name: Clone KCoreAddons
|
||||
run: |
|
||||
git clone https://invent.kde.org/frameworks/kcoreaddons.git
|
||||
|
||||
- name: Build and install KCoreAddons
|
||||
run: |
|
||||
cmake -B ${{ steps.strings.outputs.build-output-dir }}-kca -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -S kcoreaddons -DCMAKE_INSTALL_PREFIX=${{ steps.strings.outputs.prefix-dir }}
|
||||
cmake --install ${{ steps.strings.outputs.build-output-dir }}-kca
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Configure CMake
|
||||
|
|
Loading…
Add table
Reference in a new issue