diff options
Diffstat (limited to 'old-tests')
-rw-r--r-- | old-tests/cli/simple/build/bootstrap.build | 3 | ||||
-rw-r--r-- | old-tests/cli/simple/buildfile | 10 |
2 files changed, 9 insertions, 4 deletions
diff --git a/old-tests/cli/simple/build/bootstrap.build b/old-tests/cli/simple/build/bootstrap.build index 2c116c9..40e30ac 100644 --- a/old-tests/cli/simple/build/bootstrap.build +++ b/old-tests/cli/simple/build/bootstrap.build @@ -1,3 +1,6 @@ project = cli-simple +version = 1.0.0 amalgamation = # Disabled. using config +using install +using test diff --git a/old-tests/cli/simple/buildfile b/old-tests/cli/simple/buildfile index ddbf27c..5aa86a9 100644 --- a/old-tests/cli/simple/buildfile +++ b/old-tests/cli/simple/buildfile @@ -8,8 +8,10 @@ cxx.poptions += "-I$out_root" using cli -exe{driver}: cxx{driver} cxx{test} -cxx{test} hxx{test}: cli{test} +#exe{driver}: cxx{driver} cxx{test} +#cxx{test} hxx{test}: cli{test} -#exe{driver}: cxx{driver} cli.cxx{test} -#cli.cxx{test}: cli{test} +exe{driver}: cxx{driver} cli.cxx{test} +#exe{driver}: cxx{driver} lib{test} +#lib{test}: cli.cxx{test} +cli.cxx{test}: cli{test} |