summaryrefslogtreecommitdiffhomepage
path: root/dev/examples/example_02_libbtb/libbtb.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dev/examples/example_02_libbtb/libbtb.cc')
-rw-r--r--dev/examples/example_02_libbtb/libbtb.cc15
1 files changed, 15 insertions, 0 deletions
diff --git a/dev/examples/example_02_libbtb/libbtb.cc b/dev/examples/example_02_libbtb/libbtb.cc
new file mode 100644
index 0000000..0b4d7c4
--- /dev/null
+++ b/dev/examples/example_02_libbtb/libbtb.cc
@@ -0,0 +1,15 @@
+#include <BuildKit/JSONManifestBuilder.h>
+#include <cstdlib>
+
+#ifndef _WIN32
+static auto kPath = "./posix.json";
+#else
+static auto kPath = ".\win64.json";
+#endif
+
+int main(int argc, char** argv) {
+ auto builder = new BTB::JSONManifestBuilder();
+ if (!builder) return EXIT_FAILURE;
+
+ return builder->buildTarget(strlen(kPath), kPath);
+}