-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
68 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,9 @@ APPNAME = "libbar" | |
VERSION = "1.0.0" | ||
|
||
|
||
NO_RECURSE = False | ||
|
||
|
||
def options(opt): | ||
opt.load("compiler_cxx") | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,9 @@ APPNAME = "libbaz" | |
VERSION = "1.0.0" | ||
|
||
|
||
NO_RECURSE = False | ||
|
||
|
||
def resolve(ctx): | ||
pass | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
|
||
VERSION = "1.0.0" | ||
|
||
NO_RECURSE = False | ||
|
||
|
||
def build(bld): | ||
bld(export_includes="./src", name="extra") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
#! /usr/bin/env python | ||
# encoding: utf-8 | ||
|
||
APPNAME = 'libbaz' | ||
VERSION = '1.0.0' | ||
APPNAME = "libbaz" | ||
VERSION = "1.0.0" | ||
|
||
|
||
NO_RECURSE = False | ||
|
||
|
||
def resolve(ctx): | ||
pass | ||
|
||
|
||
def options(opt): | ||
opt.load('compiler_cxx') | ||
opt.load("compiler_cxx") | ||
|
||
|
||
def configure(conf): | ||
conf.load('compiler_cxx') | ||
conf.load("compiler_cxx") | ||
|
||
|
||
def build(bld): | ||
bld.stlib(features='cxx', | ||
target='baz', | ||
source='src/baz/baz.cpp', | ||
export_includes='src') | ||
bld.stlib( | ||
features="cxx", target="baz", source="src/baz/baz.cpp", export_includes="src" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
#! /usr/bin/env python | ||
# encoding: utf-8 | ||
|
||
APPNAME = 'foo' | ||
VERSION = '1.0.0' | ||
APPNAME = "foo" | ||
VERSION = "1.0.0" | ||
|
||
|
||
NO_RECURSE = False | ||
|
||
|
||
def configure(conf): | ||
pass | ||
|
||
|
||
def build(conf): | ||
raise RuntimeError("Oh no!") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
#! /usr/bin/env python | ||
# encoding: utf-8 | ||
|
||
APPNAME = 'foo' | ||
VERSION = '1.0.0' | ||
APPNAME = "foo" | ||
VERSION = "1.0.0" | ||
|
||
|
||
NO_RECURSE = False | ||
|
||
|
||
def configure(conf): | ||
raise RuntimeError("Oh no!") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
#! /usr/bin/env python | ||
# encoding: utf-8 | ||
|
||
APPNAME = 'libbaz' | ||
VERSION = '1.0.0' | ||
APPNAME = "libbaz" | ||
VERSION = "1.0.0" | ||
|
||
NO_RECURSE = False | ||
|
||
|
||
def resolve(ctx): | ||
pass | ||
|
||
|
||
def options(opt): | ||
opt.load('compiler_cxx') | ||
opt.load("compiler_cxx") | ||
|
||
|
||
def configure(conf): | ||
conf.load('compiler_cxx') | ||
conf.load("compiler_cxx") | ||
|
||
|
||
def build(bld): | ||
bld.stlib(features='cxx', | ||
target='baz', | ||
source='src/baz/baz.cpp', | ||
export_includes='src') | ||
bld.stlib( | ||
features="cxx", target="baz", source="src/baz/baz.cpp", export_includes="src" | ||
) |