source-engine/launcher/wscript

64 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2021-04-01 01:12:00 +08:00
#! /usr/bin/env python
# encoding: utf-8
from waflib import Utils
import os
top = '.'
PROJECT_NAME = 'launcher'
def options(opt):
# stub
return
def configure(conf):
conf.define('LAUNCHERONLY',1)
conf.define('CFLAGS', conf.env.CFLAGS)
conf.define('LDFLAGS', conf.env.LINKFLAGS)
2021-04-01 01:12:00 +08:00
def build(bld):
source = [
'../public/filesystem_init.cpp',
'launcher.cpp',
'reslistgenerator.cpp',
'../public/tier0/memoverride.cpp'
2021-04-01 01:12:00 +08:00
]
2022-03-19 20:40:11 +08:00
if bld.env.DEST_OS == 'android':
source += [
2022-08-16 03:35:36 +08:00
'android/main.cpp',
'android/crashhandler.cpp'
2022-03-19 20:40:11 +08:00
]
2021-04-01 01:12:00 +08:00
includes = [
'.',
2022-09-17 08:01:26 +08:00
'android/libunwind',
2021-04-01 01:12:00 +08:00
'../public',
'../public/tier0',
'../public/tier1',
'../common'
] + bld.env.INCLUDES_SDL2
defines = []
2022-09-17 08:01:26 +08:00
libs = ['tier0','tier1','tier2','tier3','vstdlib','steam_api','appframework','SDL2','togl', 'UNWIND']
2022-03-19 20:40:11 +08:00
if bld.env.DEST_OS == 'win32':
libs += ['USER32', 'OLE32', 'SHELL32']
2021-04-01 01:12:00 +08:00
2021-04-07 04:22:52 +08:00
install_path = bld.env.LIBDIR
2021-04-01 01:12:00 +08: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()
)