You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
472 B
25 lines
472 B
#! /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 |
|
)
|
|
|