summaryrefslogtreecommitdiff
path: root/sqlite3/build
diff options
context:
space:
mode:
Diffstat (limited to 'sqlite3/build')
-rw-r--r--sqlite3/build/.gitignore3
-rw-r--r--sqlite3/build/bootstrap.build10
-rw-r--r--sqlite3/build/root.build17
3 files changed, 30 insertions, 0 deletions
diff --git a/sqlite3/build/.gitignore b/sqlite3/build/.gitignore
new file mode 100644
index 0000000..4a730a3
--- /dev/null
+++ b/sqlite3/build/.gitignore
@@ -0,0 +1,3 @@
+config.build
+root/
+bootstrap/
diff --git a/sqlite3/build/bootstrap.build b/sqlite3/build/bootstrap.build
new file mode 100644
index 0000000..793831e
--- /dev/null
+++ b/sqlite3/build/bootstrap.build
@@ -0,0 +1,10 @@
+# file : build/bootstrap.build
+# copyright : not copyrighted - public domain
+
+project = sqlite3
+
+using version
+using config
+using dist
+using test
+using install
diff --git a/sqlite3/build/root.build b/sqlite3/build/root.build
new file mode 100644
index 0000000..678c40e
--- /dev/null
+++ b/sqlite3/build/root.build
@@ -0,0 +1,17 @@
+# file : build/root.build
+# copyright : not copyrighted - public domain
+
+using c
+
+h{*}: extension = h
+c{*}: extension = c
+
+if ($c.class == 'msvc')
+{
+ c.poptions += -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS
+ c.coptions += /wd4251 /wd4275 /wd4800
+}
+
+# Specify the test target for cross-testing.
+#
+test.target = $c.target