add waf buildsystem

This commit is contained in:
nillerusr
2021-03-31 20:12:00 +03:00
parent 0b3e8be302
commit 5e870e53c1
52 changed files with 3964 additions and 2 deletions

52
dmxloader/wscript Executable file
View File

@@ -0,0 +1,52 @@
#! /usr/bin/env python
# encoding: utf-8
from waflib import Utils
import os
top = '.'
PROJECT_NAME = 'dmxloader'
def options(opt):
# stub
return
def configure(conf):
conf.define('DMXLOADER_LIB',1)
def build(bld):
source = [
'dmxattribute.cpp',
'dmxelement.cpp',
'dmxloader.cpp',
'dmxloadertext.cpp',
'dmxserializationdictionary.cpp'
]
includes = [
'.',
'../public',
'../public/tier0',
'../public/tier1',
'../common'
]
defines = []
libs = []
install_path = bld.env.PREFIX
bld.stlib(
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()
)