aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSkye Deving <76892045+skyedeving@users.noreply.github.com>2021-01-26 20:44:25 -0600
committerSkye Deving <76892045+skyedeving@users.noreply.github.com>2021-01-28 11:05:42 -0600
commit9b36fb8bdaf95baaa3dc2d5b799852384bdb53ad (patch)
tree39068a53479857a11d2808b63ee3331844a9e8e0 /.github
parentafb534bf673332f4e4e16d46ea0971c509dcc8cb (diff)
Maybe using cmake will work
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 79006b5d..4c2f0d90 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Grab bass
+ - name: Download BASS
run: |
mkdir bass
cd bass
@@ -44,16 +44,17 @@ jobs:
- name: Install compiler
uses: ilammy/msvc-dev-cmd@v1
- - name: qmake
+ - name: cmake
run: |
- qmake
- nmake
+ mkdir build && cd build
+ cmake ..
+ make
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: Attorney_Online
- path: ${{github.workspace}}/bin/Attorney_Online
+ path: ${{github.workspace}}/build/Attorney_Online
# linux:
# # The CMake configure and build commands are platform agnostic and should work equally