mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 09:57:15 +01:00
22 lines
373 B
Python
22 lines
373 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
# vim: ts=4 sw=4 noexpandtab
|
|
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def options(opt):
|
|
opt.load('clang_cl')
|
|
|
|
def configure(cfg):
|
|
cfg.load('clang_cl')
|
|
cfg.env.append_value('CFLAGS','/Zi')
|
|
cfg.env.append_value('LDFLAGS','/DEBUG')
|
|
|
|
def build(bld):
|
|
bld.program(
|
|
name='test',
|
|
source=['test.c'],
|
|
target='test',
|
|
use='CRT_MULTITHREADED_DLL')
|