summaryrefslogtreecommitdiffhomepage
path: root/dev/examples/example_02_libbtb/libbtb.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-07-24 09:15:17 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-07-24 09:15:17 +0100
commita3ea256d00e5aac45574c7c8b076b60630f73a95 (patch)
treed639c686922140ee0465b27964ce4d2b854b68b7 /dev/examples/example_02_libbtb/libbtb.cc
parentbb11d32131e786b40550375005b12bcb31cf25d7 (diff)
feat! refactor! Breaking changes of the NeBuild system.
Working on a TOML backend, refactored source code namespace. And add 'toml++' vendor library. See commit details. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/examples/example_02_libbtb/libbtb.cc')
-rw-r--r--dev/examples/example_02_libbtb/libbtb.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/examples/example_02_libbtb/libbtb.cc b/dev/examples/example_02_libbtb/libbtb.cc
index 0b4d7c4..e6e489d 100644
--- a/dev/examples/example_02_libbtb/libbtb.cc
+++ b/dev/examples/example_02_libbtb/libbtb.cc
@@ -8,7 +8,7 @@ static auto kPath = ".\win64.json";
#endif
int main(int argc, char** argv) {
- auto builder = new BTB::JSONManifestBuilder();
+ auto builder = new NeBuild::JSONManifestBuilder();
if (!builder) return EXIT_FAILURE;
return builder->buildTarget(strlen(kPath), kPath);