Xrasher/ref/soft/wscript

31 lines
594 B
Text
Raw Normal View History

#! /usr/bin/env python
# encoding: utf-8
# mittorn, 2018
from waflib import Logs
import os
top = '.'
def options(opt):
return
def configure(conf):
return
def build(bld):
2024-01-30 15:04:57 +03:00
libs = [ 'engine_includes', 'werror' ]
2023-02-13 20:53:17 +01:00
# on PSVita do not link any libraries that are already in the main executable, but add the includes target
if bld.env.DEST_OS == 'psvita':
libs += [ 'sdk_includes' ]
else:
libs += [ 'public', 'M' ]
bld.shlib(source = bld.path.ant_glob('*.c'),
target = 'ref_soft',
includes = '.',
defines = 'REF_DLL=1',
2023-02-13 20:53:17 +01:00
use = libs,
install_path = bld.env.LIBDIR
)