css_enhanced_waf/soundemittersystem/wscript

55 lines
1,016 B
Text
Raw Normal View History

2021-03-31 18:12:00 +01:00
#! /usr/bin/env python
# encoding: utf-8
from waflib import Utils
import os
top = '.'
2021-04-08 20:40:26 +01:00
PROJECT_NAME = 'soundemittersystem'
2021-03-31 18:12:00 +01:00
def options(opt):
# stub
return
def configure(conf):
conf.define('SOUNDEMITTERSYSTEM_EXPORTS',1)
conf.define('_WINDOWS',1)
#conf.define('PROTECTED_THINGS_ENABLE',1) # conflicts with stlport
2021-03-31 18:12:00 +01:00
#conf.define('fopen','dont_use_fopen') # WINDOWS
def build(bld):
source = [
'../game/shared/interval.cpp',
'soundemittersystembase.cpp',
'../public/SoundParametersInternal.cpp',
'../public/tier0/memoverride.cpp'
2021-03-31 18:12:00 +01:00
]
includes = [
'.',
'../public',
'../public/tier0',
'../public/tier1',
'../game/shared'
]
defines = []
libs = ['tier0','tier1','vstdlib']
2021-04-06 21:22:52 +01:00
install_path = bld.env.LIBDIR
2021-03-31 18:12:00 +01:00
bld.shlib(
source = source,
target = PROJECT_NAME,
name = PROJECT_NAME,
features = 'c cxx',
includes = includes,
defines = defines,
use = libs,
install_path = install_path,
subsystem = bld.env.MSVC_SUBSYSTEM,
idx = bld.get_taskgen_count()
)