You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
405 B
Python
22 lines
405 B
Python
#! /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')
|
|
|