dx9
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit

This commit is contained in:
IoIxD 2026-09-17 20:58:41 -07:00
commit f2dd0ac3f1
13 changed files with 698 additions and 15 deletions

8
Jenkinsfile vendored
View file

@ -30,7 +30,7 @@ pipeline {
}
steps {
sh("git clean -dfx")
sh("./configure --enable-opengl --enable-vulkan --without-vulkan-string-helper")
sh("./configure --enable-opengl --enable-directx --enable-vulkan --without-vulkan-string-helper")
sh("make -j4")
sh("mv src/libMw.so libMw64.so")
archiveArtifacts("libMw64.so")
@ -42,7 +42,7 @@ pipeline {
}
steps {
sh("git clean -dfx")
sh("./configure --enable-opengl --cross --target=Windows --host=i686-w64-mingw32")
sh("./configure --enable-opengl --enable-directx --cross --target=Windows --host=i686-w64-mingw32")
sh("make -j4")
sh("mv src/Mw.dll Mw32.dll")
sh("mv src/libMw.dll.a libMw32.dll.a")
@ -55,7 +55,7 @@ pipeline {
}
steps {
sh("git clean -dfx")
sh("./configure --enable-opengl --cross --target=Windows --host=x86_64-w64-mingw32")
sh("./configure --enable-opengl --enable-directx --cross --target=Windows --host=x86_64-w64-mingw32")
sh("make -j4")
sh("mv src/Mw.dll Mw64.dll")
sh("mv src/libMw.dll.a libMw64.dll.a")
@ -80,7 +80,7 @@ pipeline {
}
environment {
WATCOM = "/usr/watcom"
INCLUDE = "/usr/watcom/h:/usr/watcom/h/nt"
INCLUDE = "/usr/watcom/h:/usr/watcom/h/nt:/usr/watcom/h/nt/directx"
PATH = "/usr/watcom/binl64:${env.PATH}"
}
steps {