mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-10 20:29:10 +01:00
22 lines
405 B
Plaintext
22 lines
405 B
Plaintext
|
#! /usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
# Thomas Nagy, 2016 (ita)
|
||
|
|
||
|
VERSION='0.0.1'
|
||
|
APPNAME='msvs_test'
|
||
|
|
||
|
top = '.'
|
||
|
out = 'build'
|
||
|
|
||
|
def options(opt):
|
||
|
opt.load('compiler_cxx msvs')
|
||
|
|
||
|
def configure(conf):
|
||
|
conf.load('compiler_cxx')
|
||
|
|
||
|
def build(bld):
|
||
|
bld.shlib(source='a.cpp', target='mylib', vnum='9.8.7')
|
||
|
bld.program(source='main.cpp', target='app', use='mylib')
|
||
|
bld.stlib(source='b.cpp', target='stlib')
|
||
|
|