mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-22 18:07:09 +01:00
20 lines
385 B
Python
20 lines
385 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# a1batross, mittorn, 2018
|
|
|
|
def options(opt):
|
|
pass
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
bld.program(source = bld.path.ant_glob('*.c'),
|
|
target = 'xar',
|
|
includes = '.',
|
|
use = 'public filesystem_includes werror',
|
|
rpath = bld.env.DEFAULT_RPATH,
|
|
install_path = bld.env.BINDIR,
|
|
subsystem = bld.env.CONSOLE_SUBSYSTEM
|
|
)
|