diff options
author | rtk0c <[email protected]> | 2022-06-03 23:25:43 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-06-03 23:25:43 -0700 |
commit | c2ef7737536bf1f8c81fcfae95c0183b21c9753f (patch) | |
tree | 903178f538f4d66e48a91e82827a0c91a0e42f99 /build | |
parent | 8510a85f79f706b93982b4e398b187b5f77081dd (diff) |
Changeset: 62 Branch comment: [] [WIP] Initial migration
Diffstat (limited to 'build')
-rw-r--r-- | build/bootstrap.build | 7 | ||||
-rw-r--r-- | build/root.build | 15 |
2 files changed, 22 insertions, 0 deletions
diff --git a/build/bootstrap.build b/build/bootstrap.build new file mode 100644 index 0000000..3770f7e --- /dev/null +++ b/build/bootstrap.build @@ -0,0 +1,7 @@ +project = ProjectBrussel + +using version +using config +using test +using install +using dist diff --git a/build/root.build b/build/root.build new file mode 100644 index 0000000..8d5c0d3 --- /dev/null +++ b/build/root.build @@ -0,0 +1,15 @@ +cxx.std = latest + +using c +using cxx + +h{*}: extension = h +c{*}: extension = c +hxx{*}: extension = hpp +ixx{*}: extension = ipp +txx{*}: extension = tpp +cxx{*}: extension = cpp + +# Assume headers are importable unless stated otherwise. +# +hxx{*}: cxx.importable = true |