2019-03-19 23:17:46 +01:00
|
|
|
#! /usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
# mittorn, 2018
|
|
|
|
|
|
|
|
from waflib import Logs
|
|
|
|
import os
|
|
|
|
|
|
|
|
top = '.'
|
|
|
|
|
|
|
|
def options(opt):
|
|
|
|
# stub
|
|
|
|
return
|
|
|
|
|
|
|
|
def configure(conf):
|
2019-05-28 03:12:02 +02:00
|
|
|
# stub
|
|
|
|
return
|
2019-03-19 23:17:46 +01:00
|
|
|
|
|
|
|
def build(bld):
|
2022-09-10 18:55:37 +02:00
|
|
|
bld(name = 'sdk_includes', export_includes = '. ../common ../pm_shared ../engine')
|
|
|
|
bld.stlib(source = bld.path.ant_glob('*.c'),
|
2019-03-24 23:25:44 +01:00
|
|
|
target = 'public',
|
2019-03-19 23:17:46 +01:00
|
|
|
features = 'c',
|
2022-09-10 18:55:37 +02:00
|
|
|
use = 'sdk_includes',
|
|
|
|
subsystem = bld.env.MSVC_SUBSYSTEM)
|