2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-25 11:19:59 +01:00
xash3d-fwgs/utils/xar/wscript
2023-07-05 07:00:39 +03:00

21 lines
397 B
Python

#! /usr/bin/env python
# encoding: utf-8
# a1batross, mittorn, 2018
def options(opt):
pass
def configure(conf):
pass
def build(bld):
bld(source = bld.path.ant_glob('*.c'),
target = 'xar',
features = 'c cprogram',
includes = '.',
use = 'public filesystem_includes',
rpath = bld.env.DEFAULT_RPATH,
install_path = bld.env.BINDIR,
subsystem = bld.env.CONSOLE_SUBSYSTEM
)