2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 18:07:12 +01:00
waf/playground/protoc/wscript
2012-09-27 21:08:26 +02:00

19 lines
289 B
Python

#! /usr/bin/env python
top = '.'
out = 'build'
def options(opt):
opt.load('compiler_cxx')
def configure(conf):
conf.load('compiler_cxx protoc')
def build(bld):
bld(
features = 'cxx cxxshlib',
source = ['inc/message.proto'],
target = 'somelib',
includes = ['.', 'inc'])