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.
37 lines
623 B
37 lines
623 B
#! /usr/bin/env python |
|
# encoding: utf-8 |
|
# a1batross, mittorn, 2018 |
|
|
|
from waflib import Logs |
|
import os |
|
import sys |
|
|
|
top = '.' |
|
|
|
def options(opt): |
|
return |
|
|
|
def configure(conf): |
|
if conf.env.DEST_OS == 'win32': |
|
conf.load('winres') |
|
|
|
def build(bld): |
|
source = ['game.cpp'] |
|
includes = '. ../common' |
|
libs = [] |
|
|
|
if bld.env.DEST_OS != 'win32': |
|
libs += [ 'DL' ] |
|
else: |
|
libs += ['USER32', 'SHELL32'] |
|
source += ['game.rc'] |
|
|
|
bld( |
|
source = source, |
|
target = 'xash3d', # hl.exe |
|
features = 'c cprogram', |
|
includes = includes, |
|
use = libs, |
|
install_path = bld.env.BINDIR, |
|
subsystem = bld.env.MSVC_SUBSYSTEM |
|
)
|
|
|