From: Michael Tänzer Date: Sat, 1 Feb 2014 14:08:01 +0000 (+0100) Subject: Some initial setup X-Git-Url: https://code.wpia.club/?p=cassiopeia.git;a=commitdiff_plain;h=2db911fe86444b08dda5b6b84045b4d743e99230;ds=sidebyside Some initial setup - directories - added eclipse stuff to gitignore - initial main file Signed-off-by: Michael Tänzer --- 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