Rev 1: Starting a trivial exe that just finds the nick. in http://bazaar.launchpad.net/~jameinel/my_nick
John Arbash Meinel
john at arbash-meinel.com
Thu May 20 04:11:29 BST 2010
At http://bazaar.launchpad.net/~jameinel/my_nick
------------------------------------------------------------
revno: 1
revision-id: john at arbash-meinel.com-20100520031122-ci7ob9mvdziz1z94
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: my_nick
timestamp: Wed 2010-05-19 22:11:22 -0500
message:
Starting a trivial exe that just finds the nick.
-------------- next part --------------
=== added file 'Makefile'
--- a/Makefile 1970-01-01 00:00:00 +0000
+++ b/Makefile 2010-05-20 03:11:22 +0000
@@ -0,0 +1,9 @@
+
+EXE=.exe
+
+all: my_nick$(EXE)
+
+my_nick$(EXE): my_nick.cpp
+ g++ my_nick.cpp -o my_nick$(EXE) -mno-cygwin
+
+# vim: ts=4 sw=4 noet ft=make
=== added file 'my_nick.cpp'
--- a/my_nick.cpp 1970-01-01 00:00:00 +0000
+++ b/my_nick.cpp 2010-05-20 03:11:22 +0000
@@ -0,0 +1,12 @@
+
+/* A simple version that probes the FS to find what branch we're in.
+ */
+
+#include <iostream>
+
+
+int
+main(int argc, char **argv)
+{
+ return 0;
+}
More information about the bazaar-commits
mailing list