]> WPIA git - cassiopeia.git/commitdiff
Some initial setup
authorMichael Tänzer <neo@nhng.de>
Sat, 1 Feb 2014 14:08:01 +0000 (15:08 +0100)
committerMichael Tänzer <neo@nhng.de>
Sat, 1 Feb 2014 14:08:01 +0000 (15:08 +0100)
- directories
- added eclipse stuff to gitignore
- initial main file

Signed-off-by: Michael Tänzer <neo@nhng.de>
.gitignore
README.md
bin/DIR_INFO [new file with mode: 0644]
debian/DIR_INFO [new file with mode: 0644]
docs/DIR_INFO [new file with mode: 0644]
lib/DIR_INFO [new file with mode: 0644]
src/main.cpp [new file with mode: 0644]
test/DIR_INFO [new file with mode: 0644]

index 620d3dc8a49200fcfae26619eb8a01741fcc41c5..c3af5c8a84e7f7bff76890c6a70ecb5e362f5646 100644 (file)
@@ -11,3 +11,7 @@
 *.lai
 *.la
 *.a
+
+# Ignore Eclipse stuff
+*.cproject
+*.project
index dd0209f7681d762f6a063295cd16bcda278bdeb5..54a8404638ba614b7164feacc4b446a3146feb20 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-cacert-cassiopeia
+Cassiopeia
 =================
 
 Signing Module for CAcert
diff --git a/bin/DIR_INFO b/bin/DIR_INFO
new file mode 100644 (file)
index 0000000..dc72b6a
--- /dev/null
@@ -0,0 +1 @@
+This directory is for storing build helper scripts and the like
diff --git a/debian/DIR_INFO b/debian/DIR_INFO
new file mode 100644 (file)
index 0000000..5be87cb
--- /dev/null
@@ -0,0 +1 @@
+This directory is for debian packaging files
diff --git a/docs/DIR_INFO b/docs/DIR_INFO
new file mode 100644 (file)
index 0000000..0491b5e
--- /dev/null
@@ -0,0 +1 @@
+This directory is for the huge amount of documentation we will have
diff --git a/lib/DIR_INFO b/lib/DIR_INFO
new file mode 100644 (file)
index 0000000..e568640
--- /dev/null
@@ -0,0 +1 @@
+External libraries go here
diff --git a/src/main.cpp b/src/main.cpp
new file mode 100644 (file)
index 0000000..bbf62d5
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+    Cassiopeia - CAcert signing module
+    Copyright (C) 2014  CAcert Inc.
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+int main(int argc, const char* argv[]) {
+       return 0;
+}
diff --git a/test/DIR_INFO b/test/DIR_INFO
new file mode 100644 (file)
index 0000000..53b73b5
--- /dev/null
@@ -0,0 +1 @@
+In case you haven't guessed: this directory is here to store unit test files