diff --git a/.github/workflows/compile-project.yml b/.github/workflows/compile-project.yml new file mode 100644 index 0000000..79fde60 --- /dev/null +++ b/.github/workflows/compile-project.yml @@ -0,0 +1,29 @@ +name: Compile project + +on: + push: + branches: [ "linux" ] + pull_request: + branches: [ "linux" ] + +env: + BUILD_TYPE: Release + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Install dependences + run: | + sudo apt-get update + sudo apt-get build-dep . -y + + - name: Configure CMake + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + + - name: Build + # Build your program with the given configuration + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} diff --git a/debian/control b/debian/control index 3834a0b..a945dd0 100644 --- a/debian/control +++ b/debian/control @@ -10,10 +10,13 @@ Build-Depends: qt6-declarative-dev, qt6-base-dev-tools, qt6-tools-dev, + qtquickcontrols2-5-dev, qml6-module-qtquick-layouts, qml6-module-qtquick-window, qml6-module-qt-labs-platform, - qml6-module-qtquick-controls2-styles-chameleon + qt6-declarative-private-dev, + qt6-base-private-dev + Standards-Version: 0.0.1