ref: common: draft new static library, containing shared code for ref_gl and ref_soft

This commit is contained in:
Alibek Omarov
2026-04-12 15:52:33 +05:00
parent 6719443d99
commit 0b49e60c22
13 changed files with 136 additions and 290 deletions
+19
View File
@@ -0,0 +1,19 @@
#! /usr/bin/env python
# encoding: utf-8
top = '.'
def options(opt):
pass
def configure(conf):
pass
def build(bld):
bld.stlib(source = bld.path.ant_glob('*.c'),
target = 'ref_common',
includes = '.',
export_includes = '.',
use = 'engine_includes public werror',
subsystem = bld.env.MSVC_SUBSYSTEM
)