aedi: add vkdoom target

This commit is contained in:
alexey.lysiuk 2023-09-17 10:15:20 +03:00
parent 134fd03c09
commit 6d6673961c
2 changed files with 9 additions and 0 deletions

View file

@ -29,6 +29,7 @@ def targets():
return (
GZDoomTarget(),
QZDoomTarget(),
VkDoomTarget(),
LZDoomTarget(),
RazeTarget(),
HandsOfNecromancyTarget(),

View file

@ -194,6 +194,14 @@ class QZDoomTarget(ZDoomVulkanBaseTarget):
state.checkout_git('https://github.com/ZDoom/qzdoom.git')
class VkDoomTarget(ZDoomVulkanBaseTarget):
def __init__(self, name='vkdoom'):
super().__init__(name)
def prepare_source(self, state: BuildState):
state.checkout_git('https://github.com/dpjudas/VkDoom.git')
class LZDoomTarget(ZDoomBaseTarget):
def __init__(self, name='lzdoom'):
super().__init__(name)