diff options
Diffstat (limited to 'tests/amalgam/simple1')
-rw-r--r-- | tests/amalgam/simple1/build/bootstrap.build | 2 | ||||
-rw-r--r-- | tests/amalgam/simple1/buildfile | 9 | ||||
-rw-r--r-- | tests/amalgam/simple1/driver.cxx | 4 |
3 files changed, 15 insertions, 0 deletions
diff --git a/tests/amalgam/simple1/build/bootstrap.build b/tests/amalgam/simple1/build/bootstrap.build new file mode 100644 index 0000000..e4502f8 --- /dev/null +++ b/tests/amalgam/simple1/build/bootstrap.build @@ -0,0 +1,2 @@ +project = amalgam-simple1 +using config diff --git a/tests/amalgam/simple1/buildfile b/tests/amalgam/simple1/buildfile new file mode 100644 index 0000000..ec6a4e1 --- /dev/null +++ b/tests/amalgam/simple1/buildfile @@ -0,0 +1,9 @@ +using cxx + +hxx.ext = hxx +cxx.ext = cxx +ixx.ext = ixx + +cxx.poptions += -I$out_root + +exe{driver}: cxx{driver} diff --git a/tests/amalgam/simple1/driver.cxx b/tests/amalgam/simple1/driver.cxx new file mode 100644 index 0000000..70b4146 --- /dev/null +++ b/tests/amalgam/simple1/driver.cxx @@ -0,0 +1,4 @@ +int +main () +{ +} |