54 lines
872 B
Plaintext
Raw Normal View History

2023-05-09 19:57:22 +03:00
#! /usr/bin/env python
# encoding: utf-8
# vim: noexpandtab
from waflib import Utils
import os
top = '.'
PROJECT_NAME = 'xbspinfo'
def options(opt):
# stub
return
def configure(conf):
conf.define('DONT_PROTECT_FILEIO_FUNCTIONS', 1)
return
def build(bld):
source = [
'xbspinfo.cpp'
]
includes = [
'.',
'../../common',
'../../../public',
'../../../public/tier0',
'../../../public/tier1',
]
defines = []
libs = ['tier0', 'tier1', 'tier2', 'tier3', 'lzma', 'mathlib']
if bld.env.DEST_OS != 'win32':
libs += ['DL', 'LOG']
install_path = bld.env.BINDIR
bld(
source = source,
target = PROJECT_NAME,
name = PROJECT_NAME,
features = 'c cxx cxxprogram',
includes = includes,
defines = defines,
use = libs,
install_path = install_path,
subsystem = bld.env.MSVC_SUBSYSTEM,
idx = bld.get_taskgen_count()
)