blob: a58f458266b0d38ccdf489551895b3aa206610b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
VERSION= '0.0.4'
APPNAME= 'esaxx'
srcdir= '.'
blddir= 'bin'
def set_options(ctx):
ctx.tool_options('compiler_cxx')
def configure(ctx):
ctx.check_tool('compiler_cxx')
ctx.env.CXXFLAGS += ['-O2', '-Wall', '-g']
def build(bld):
task1= bld(features='cxx cprogram',
source = 'enumSubstring.cpp',
name = 'enum_substring',
target = 'enum_substring',
includes = '.')
def dist_hook():
import os
os.remove('googlecode_upload.py')
|