ref_dx2 (WIP)

This commit is contained in:
lewa_j
2026-07-25 15:54:24 +03:00
parent 5daf686a82
commit d414eeb246
5 changed files with 2018 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#! /usr/bin/env python
# encoding: utf-8
# mittorn, 2018
def options(opt):
pass
def configure(conf):
pass
def build(bld):
bld.shlib(
source = ['r_context.c', 'r_image.c'],
target = 'ref_dx2',
defines = 'REF_DLL',
use = 'engine_includes sdk_includes werror public USER32 DDRAW',
install_path = bld.env.LIBDIR
)