summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hello0/.gitattributes19
-rw-r--r--hello0/.gitignore5
-rw-r--r--hello0/build/.gitignore5
-rw-r--r--hello0/build/root.build2
-rw-r--r--hello0/manifest4
5 files changed, 31 insertions, 4 deletions
diff --git a/hello0/.gitattributes b/hello0/.gitattributes
new file mode 100644
index 0000000..1631641
--- /dev/null
+++ b/hello0/.gitattributes
@@ -0,0 +1,19 @@
+# This is a good default: files that are auto-detected by git to be text are
+# converted to the platform-native line ending (LF on Unix, CRLF on Windows)
+# in the working tree and to LF in the repository.
+#
+* text=auto
+
+# Use `eol=crlf` for files that should have the CRLF line ending both in the
+# working tree (even on Unix) and in the repository.
+#
+#*.bat text eol=crlf
+
+# Use `eol=lf` for files that should have the LF line ending both in the
+# working tree (even on Windows) and in the repository.
+#
+#*.sh text eol=lf
+
+# Use `binary` to make sure certain files are never auto-detected as text.
+#
+#*.png binary
diff --git a/hello0/.gitignore b/hello0/.gitignore
index d2bf469..b70cc4b 100644
--- a/hello0/.gitignore
+++ b/hello0/.gitignore
@@ -3,9 +3,14 @@
*.d
*.t
*.i
+*.i.*
*.ii
+*.ii.*
*.o
*.obj
+*.gcm
+*.pcm
+*.ifc
*.so
*.dll
*.a
diff --git a/hello0/build/.gitignore b/hello0/build/.gitignore
index 225c27f..974e01d 100644
--- a/hello0/build/.gitignore
+++ b/hello0/build/.gitignore
@@ -1 +1,4 @@
-config.build
+/config.build
+/root/
+/bootstrap/
+build/
diff --git a/hello0/build/root.build b/hello0/build/root.build
index 7c65dab..0581d19 100644
--- a/hello0/build/root.build
+++ b/hello0/build/root.build
@@ -1,4 +1,4 @@
-cxx.std = 11
+cxx.std = latest
using cxx
diff --git a/hello0/manifest b/hello0/manifest
index a11da2a..13c5a28 100644
--- a/hello0/manifest
+++ b/hello0/manifest
@@ -3,11 +3,11 @@ name: hello0
version: 1.0.0
project: hello
summary: Zero-dependencies "Hello World" program
-license: public-domain
+license: other: public domain ; Released into the public domain.
url: http://example.org/hello0
src-url: https://git.build2.org/cgit/hello/hello0/tree/hello0
email: hello0@example.org
-build-email: builds@build2.org
+build-warning-email: builds@build2.org
builds: all
requires: c++11
depends: * build2 >= 0.9.0