mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 06:36:54 +00:00
2c6669f5e3
* Upload Android armv7 libs * Fix debug build * utlvector: fix undefined behavior * wscript: add --use-ccache option * wscript: store ccache in a separate directory * Propertly use gl4es * fontconfig: fix font detection * [android]remove fontconfig dependency * Add build guide for other platforms Co-authored-by: JusicP <slender87844@gmail.com> Co-authored-by: nillerusr <nillerusr@users.noreply.github.com>
52 lines
849 B
Python
52 lines
849 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
from waflib import Utils
|
|
import os
|
|
|
|
top = '.'
|
|
PROJECT_NAME = 'vgui_surfacelib'
|
|
|
|
def options(opt):
|
|
# stub
|
|
return
|
|
|
|
def configure(conf):
|
|
return
|
|
|
|
def build(bld):
|
|
source = [
|
|
'BitmapFont.cpp',
|
|
'FontAmalgam.cpp',
|
|
'FontManager.cpp',
|
|
'FontEffects.cpp',
|
|
#'Win32Font.cpp', [$WIN32 && !$X360]
|
|
#'Win32Font_x360.cpp', [$X360]
|
|
#'osxfont.cpp', [$OSXALL]
|
|
'linuxfont.cpp' # [$LINUXALL]
|
|
]
|
|
|
|
includes = [
|
|
'.',
|
|
'../../public',
|
|
'../../public/tier0',
|
|
'../../public/tier1',
|
|
'../../common',
|
|
] + bld.env.INCLUDES_FT2
|
|
|
|
defines = []
|
|
|
|
libs = []
|
|
|
|
bld.stlib(
|
|
source = source,
|
|
target = PROJECT_NAME,
|
|
name = PROJECT_NAME,
|
|
features = 'c cxx',
|
|
includes = includes,
|
|
defines = defines,
|
|
use = libs,
|
|
subsystem = bld.env.MSVC_SUBSYSTEM,
|
|
idx = bld.get_taskgen_count()
|
|
)
|