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 14ac514Copy full SHA for 14ac514
.github/workflows/compilation.yml
@@ -26,9 +26,19 @@ jobs:
26
git checkout cmake
27
mkdir build
28
cd build
29
- cmake ..
+ cmake -DCMAKE_TOOLCHAIN_FILE=${PS2SDK}/ps2dev.cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
30
make -j $(getconf _NPROCESSORS_ONLN)
31
make install
32
+
33
+ - name: Install openvcl
34
+ run: |
35
+ git clone https://github.com/fjtrujy/openvcl.git
36
+ cd openvcl
37
+ git checkout ps2gl
38
+ make -j $(getconf _NPROCESSORS_ONLN) clean
39
+ make -j $(getconf _NPROCESSORS_ONLN)
40
+ make -j $(getconf _NPROCESSORS_ONLN) install
41
42
43
- name: Configure with CMake
44
run: |
0 commit comments