mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-26 20:01:13 +01:00
56 lines
1.4 KiB
Python
56 lines
1.4 KiB
Python
#! /usr/bin/env python
|
|
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def options(opt):
|
|
opt.load('compiler_cxx python java')
|
|
|
|
def configure(conf):
|
|
conf.load('compiler_cxx python java protoc')
|
|
conf.check_python_version(minver=(2, 5, 0))
|
|
# Here you have to point to your protobuf-java JAR
|
|
conf.env.CLASSPATH_PROTOBUF = ['/tmp/cp/protobuf-java-2.5.0.jar']
|
|
|
|
def build(bld):
|
|
bld(
|
|
features = 'cxx cxxshlib',
|
|
source = ['inc/message_inc.proto','inc/message.proto'],
|
|
name = 'somelib',
|
|
target = 'somelib',
|
|
includes = ['inc'],
|
|
export_includes = ['inc'])
|
|
|
|
bld(
|
|
features = 'cxx cxxshlib',
|
|
source = ['incdeep/a/b/test.proto'],
|
|
target = 'somedeeplib',
|
|
includes = ['incdeep'])
|
|
|
|
bld(
|
|
features = 'cxx cxxshlib',
|
|
source = ['incseparate/depinotherdir.proto'],
|
|
target = 'crossdirlib',
|
|
includes = ['incseparate'],
|
|
use = ['somelib'])
|
|
|
|
bld(
|
|
features = 'py',
|
|
name = 'pbpy',
|
|
source = ['inc/message_inc.proto','inc/message.proto'],
|
|
protoc_includes = ['inc'])
|
|
|
|
bld(
|
|
features = 'cxx py',
|
|
name = 'pbboth',
|
|
source = ['incboth/messageboth_inc.proto', 'incboth/messageboth.proto'],
|
|
protoc_includes = ['incboth']) # either protoc_includes or includes would work in this case
|
|
|
|
bld(
|
|
features = 'javac protoc',
|
|
name = 'pbjava',
|
|
srcdir = 'inc/',
|
|
source = ['inc/message_inc.proto', 'inc/message.proto'],
|
|
use = 'PROTOBUF',
|
|
protoc_includes = ['inc'])
|