Maybe using cmake will work

This commit is contained in:
Skye Deving 2021-01-26 20:44:25 -06:00
parent afb534bf67
commit 9b36fb8bda

View File

@ -16,7 +16,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Grab bass - name: Download BASS
run: | run: |
mkdir bass mkdir bass
cd bass cd bass
@ -44,16 +44,17 @@ jobs:
- name: Install compiler - name: Install compiler
uses: ilammy/msvc-dev-cmd@v1 uses: ilammy/msvc-dev-cmd@v1
- name: qmake - name: cmake
run: | run: |
qmake mkdir build && cd build
nmake cmake ..
make
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: Attorney_Online name: Attorney_Online
path: ${{github.workspace}}/bin/Attorney_Online path: ${{github.workspace}}/build/Attorney_Online
# linux: # linux:
# # The CMake configure and build commands are platform agnostic and should work equally # # The CMake configure and build commands are platform agnostic and should work equally