mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-22 18:07:09 +01:00
20 lines
341 B
Python
20 lines
341 B
Python
#! /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',
|
|
defines = 'REF_DLL',
|
|
use = 'engine_includes sdk_includes werror',
|
|
install_path = bld.env.LIBDIR,
|
|
subsystem = bld.env.MSVC_SUBSYSTEM
|
|
)
|