You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.3 KiB
61 lines
1.3 KiB
4 years ago
|
#! /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()
|
||
|
)
|