From 2db911fe86444b08dda5b6b84045b4d743e99230 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michael=20T=C3=A4nzer?= Date: Sat, 1 Feb 2014 15:08:01 +0100 Subject: [PATCH] Some initial setup MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit - directories - added eclipse stuff to gitignore - initial main file Signed-off-by: Michael Tänzer --- .gitignore | 4 ++++ README.md | 2 +- bin/DIR_INFO | 1 + debian/DIR_INFO | 1 + docs/DIR_INFO | 1 + lib/DIR_INFO | 1 + src/main.cpp | 22 ++++++++++++++++++++++ test/DIR_INFO | 1 + 8 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 bin/DIR_INFO create mode 100644 debian/DIR_INFO create mode 100644 docs/DIR_INFO create mode 100644 lib/DIR_INFO create mode 100644 src/main.cpp create mode 100644 test/DIR_INFO diff --git a/.gitignore b/.gitignore index 620d3dc..c3af5c8 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,7 @@ *.lai *.la *.a + +# Ignore Eclipse stuff +*.cproject +*.project diff --git a/README.md b/README.md index dd0209f..54a8404 100644 --- 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 index 0000000..dc72b6a --- /dev/null +++ b/bin/DIR_INFO @@ -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 index 0000000..5be87cb --- /dev/null +++ b/debian/DIR_INFO @@ -0,0 +1 @@ +This directory is for debian packaging files diff --git a/docs/DIR_INFO b/docs/DIR_INFO new file mode 100644 index 0000000..0491b5e --- /dev/null +++ b/docs/DIR_INFO @@ -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 index 0000000..e568640 --- /dev/null +++ b/lib/DIR_INFO @@ -0,0 +1 @@ +External libraries go here diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..bbf62d5 --- /dev/null +++ b/src/main.cpp @@ -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 index 0000000..53b73b5 --- /dev/null +++ b/test/DIR_INFO @@ -0,0 +1 @@ +In case you haven't guessed: this directory is here to store unit test files -- 2.39.2