mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-11 15:47:55 +00:00
39 lines
601 B
Plaintext
39 lines
601 B
Plaintext
|
#! /usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
# mittorn, 2018
|
||
|
|
||
|
from waflib import Logs
|
||
|
import os
|
||
|
from fwgslib import get_subproject_name
|
||
|
|
||
|
top = '.'
|
||
|
|
||
|
def options(opt):
|
||
|
# stub
|
||
|
return
|
||
|
|
||
|
def configure(conf):
|
||
|
# stub
|
||
|
return
|
||
|
|
||
|
def build(bld):
|
||
|
bld.load_envs()
|
||
|
name = get_subproject_name(bld)
|
||
|
bld.env = bld.all_envs[name]
|
||
|
|
||
|
libs = [ 'M' ]
|
||
|
|
||
|
source = bld.path.ant_glob(['*.c'])
|
||
|
|
||
|
includes = [ '.', '../common', '../engine' ]
|
||
|
|
||
|
bld.stlib(
|
||
|
source = source,
|
||
|
target = name,
|
||
|
features = 'c',
|
||
|
includes = includes,
|
||
|
use = libs,
|
||
|
install_path = bld.env.LIBDIR,
|
||
|
subsystem = bld.env.MSVC_SUBSYSTEM
|
||
|
)
|