We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a8c7f9 commit 396575eCopy full SHA for 396575e
.github/workflows/compilation.yml
@@ -30,6 +30,24 @@ jobs:
30
make -j $(getconf _NPROCESSORS_ONLN)
31
make install
32
33
+ - name: Compile masp
34
+ run: |
35
+ git clone https://github.com/fjtrujy/masp.git
36
+ cd masp
37
+ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$PS2DEV"
38
+ cmake --build build -j $(getconf _NPROCESSORS_ONLN)
39
+ cmake --install build
40
+
41
+ - name: Install openvcl
42
43
+ git clone https://github.com/fjtrujy/openvcl.git
44
+ cd openvcl
45
+ git checkout ps2gl
46
+ make -j $(getconf _NPROCESSORS_ONLN) clean
47
+ make -j $(getconf _NPROCESSORS_ONLN)
48
+ make -j $(getconf _NPROCESSORS_ONLN) install
49
50
51
- name: Configure with CMake
52
run: |
53
mkdir build
0 commit comments