mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-07 17:29:36 +00:00
add waf buildsystem
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
#! /usr/bin/env python
|
||||
# encoding: utf-8
|
||||
|
||||
from waflib import Utils, Configure
|
||||
import os
|
||||
|
||||
top = '.'
|
||||
PROJECT_NAME = 'vguimatsurface'
|
||||
|
||||
def options(opt):
|
||||
# stub
|
||||
return
|
||||
|
||||
def configure(conf):
|
||||
conf.define('VGUIMATSURFACE_DLL_EXPORT',1)
|
||||
conf.define('GAMEUI_EXPORTS',1)
|
||||
conf.define('DONT_PROTECT_FILEIO_FUNCTIONS',1)
|
||||
conf.define('PROTECTED_THINGS_ENABLE',1)
|
||||
|
||||
|
||||
def build(bld):
|
||||
source = [
|
||||
'Clip2D.cpp',
|
||||
'Cursor.cpp',
|
||||
'../public/filesystem_helpers.cpp',
|
||||
'FontTextureCache.cpp',
|
||||
'Input.cpp',
|
||||
'MatSystemSurface.cpp',
|
||||
'asanstubs.cpp',
|
||||
#'memorybitmap.cpp', [$WIN32]
|
||||
'TextureDictionary.cpp',
|
||||
'../vgui2/src/vgui_key_translation.cpp',
|
||||
'../public/vgui_controls/vgui_controls.cpp'
|
||||
]
|
||||
|
||||
includes = [
|
||||
'.',
|
||||
'../public',
|
||||
'../public/tier0',
|
||||
'../public/tier1',
|
||||
'../common'
|
||||
] + bld.env.INCLUDES_SDL2 + bld.env.INCLUDES_FREETYPE
|
||||
|
||||
defines = []
|
||||
|
||||
libs = ['bitmap','mathlib','tier0','vgui_controls','tier1','vstdlib','tier2','tier3','vgui_surfacelib','FT2','FC','SDL2']
|
||||
|
||||
install_path = bld.env.PREFIX
|
||||
|
||||
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()
|
||||
)
|
||||
Reference in New Issue
Block a user