summaryrefslogtreecommitdiffhomepage
path: root/dev/examples/example_02_libbtb
diff options
context:
space:
mode:
Diffstat (limited to 'dev/examples/example_02_libbtb')
-rw-r--r--dev/examples/example_02_libbtb/README.md7
-rw-r--r--dev/examples/example_02_libbtb/libbtb.cc15
-rw-r--r--dev/examples/example_02_libbtb/posix.json20
-rw-r--r--dev/examples/example_02_libbtb/win64.json19
4 files changed, 61 insertions, 0 deletions
diff --git a/dev/examples/example_02_libbtb/README.md b/dev/examples/example_02_libbtb/README.md
new file mode 100644
index 0000000..26ccb72
--- /dev/null
+++ b/dev/examples/example_02_libbtb/README.md
@@ -0,0 +1,7 @@
+# Notice for Deployment.
+
+In order to use libBTB, it shall live on the same directory,
+<br/>
+or within a directory recognized in the `$LD_LIBRARY_PATH` or `$DYLD_LIBRARY_PATH` variable.
+
+## Thanks in advance. \ No newline at end of file
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);
+}
diff --git a/dev/examples/example_02_libbtb/posix.json b/dev/examples/example_02_libbtb/posix.json
new file mode 100644
index 0000000..871712e
--- /dev/null
+++ b/dev/examples/example_02_libbtb/posix.json
@@ -0,0 +1,20 @@
+{
+ "compiler_path": "g++",
+ "compiler_std": "c++20",
+ "headers_path": [
+ "../../",
+ "../../vendor"
+ ],
+ "sources_path": [
+ "libbtb.cc"
+ ],
+ "output_name": "libbtb.elf",
+ "compiler_flags": [
+ "-L/usr/local/lib",
+ "-lBTB"
+ ],
+ "cpp_macros": [
+ "FOO_MACRO"
+ ],
+ "run_after_build": true
+} \ No newline at end of file
diff --git a/dev/examples/example_02_libbtb/win64.json b/dev/examples/example_02_libbtb/win64.json
new file mode 100644
index 0000000..658ee0f
--- /dev/null
+++ b/dev/examples/example_02_libbtb/win64.json
@@ -0,0 +1,19 @@
+{
+ "compiler_path": "x86_64-w64-mingw32-g++",
+ "compiler_std": "c++20",
+ "headers_path": [
+ "../../",
+ "../../vendor"
+ ],
+ "sources_path": [
+ "libbtb.cc"
+ ],
+ "output_name": "libbtb.exe",
+ "compiler_flags": [
+ "-lBTB"
+ ],
+ "cpp_macros": [
+ "FOO_MACRO"
+ ],
+ "run_after_build": true
+} \ No newline at end of file