ref: add ref_null renderer that does nothing

This was sitting in my git stash for months. Let's publish it now.
This commit is contained in:
Alibek Omarov
2024-02-01 02:45:19 +03:00
parent b56c83a2f9
commit 565f717804
3 changed files with 645 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#! /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',
target = 'ref_null',
features = 'c',
defines = 'REF_DLL',
use = 'engine_includes sdk_includes werror',
install_path = bld.env.LIBDIR,
subsystem = bld.env.MSVC_SUBSYSTEM
)