Skip to content

Commit

Permalink
Align appveyor wscript for rapidcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMigda committed May 6, 2017
1 parent 125a115 commit ece5bdd
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,14 @@ def build(ctx):

# build targets:

# gtest
ctx(
features = 'cxx cxxstlib seq',
target = 'rapidcheck',
source = ctx.path.ant_glob('lib/rapidcheck/*.cpp'),
includes = [ 'lib/rapidcheck/include' ],
)

# gtest
ctx(
features = 'cxx cxxstlib seq',
Expand Down Expand Up @@ -308,8 +316,8 @@ def build(ctx):
features = 'c cxx cxxprogram seq',
target = 'testrt',
source = ctx.path.ant_glob('test/libponyrt/**/*.cc'),
includes = [ 'src/common', 'src/libponyrt', 'lib/gtest' ],
use = [ 'gtest', 'libponyrt' ],
includes = [ 'src/common', 'src/libponyrt', 'lib/gtest', 'lib/rapidcheck/include', 'lib/rapidcheck/extras/gtest/include' ],
use = [ 'gtest', 'libponyrt', 'rapidcheck' ],
lib = ctx.env.PONYC_EXTRA_LIBS
)

Expand Down

0 comments on commit ece5bdd

Please sign in to comment.