mirror of https://github.com/FWGS/xash3d-fwgs
26 lines
472 B
Python
26 lines
472 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
import os
|
|
|
|
def options(opt):
|
|
pass
|
|
|
|
def configure(conf):
|
|
conf.define('REF_DLL', 1)
|
|
|
|
def build(bld):
|
|
source = bld.path.ant_glob( [ '*.c' ] )
|
|
includes = [ '.' ]
|
|
libs = [ 'engine_includes', 'sdk_includes' ]
|
|
bld.env.LDFLAGS += ['-fPIC']
|
|
bld.env.CFLAGS += ['-fPIC']
|
|
bld.stlib(
|
|
source = source,
|
|
target = 'vgl_shim',
|
|
features = 'c',
|
|
includes = includes,
|
|
use = libs,
|
|
subsystem = bld.env.MSVC_SUBSYSTEM
|
|
)
|