mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-27 23:34:31 +00:00
71 lines
1.3 KiB
Python
Executable File
71 lines
1.3 KiB
Python
Executable File
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# vim: noexpandtab
|
|
|
|
from waflib import Utils
|
|
import os
|
|
|
|
top = '.'
|
|
PROJECT_NAME = 'bsppack'
|
|
|
|
def options(opt):
|
|
# stub
|
|
return
|
|
|
|
def configure(conf):
|
|
conf.define('BSPPACK_EXPORTS', 1)
|
|
conf.define('ZIP_SUPPORT_LZMA_ENCODE', 1)
|
|
return
|
|
|
|
def build(bld):
|
|
source = [
|
|
'bsppack.cpp',
|
|
'../common/bsplib.cpp',
|
|
'../common/cmdlib.cpp',
|
|
'../common/scriplib.cpp',
|
|
'../common/filesystem_tools.cpp',
|
|
'../../public/filesystem_helpers.cpp',
|
|
'../../public/filesystem_init.cpp',
|
|
'../../public/lumpfiles.cpp',
|
|
'../../public/zip_utils.cpp',
|
|
]
|
|
|
|
if bld.env.DEST_OS != 'win32':
|
|
source += ['../../filesystem/linux_support.cpp']
|
|
|
|
includes = [
|
|
'.',
|
|
'../common',
|
|
'../../public',
|
|
'../../public/tier0',
|
|
'../../public/tier1',
|
|
'../../public/tier2',
|
|
'../../public/tier3',
|
|
'../../public/mathlib'
|
|
]
|
|
|
|
defines = []
|
|
|
|
libs = ['tier0', 'tier1', 'tier2', 'tier3', 'mathlib', 'lzma', 'vstdlib']
|
|
|
|
if bld.env.DEST_OS == 'win32':
|
|
libs += ['ADVAPI32', 'WS2_32']
|
|
else:
|
|
libs += ['DL', 'M', 'LOG']
|
|
|
|
install_path = bld.env.LIBDIR
|
|
|
|
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()
|
|
)
|
|
|