solstice

Compute collected power and efficiencies of a solar plant
git clone git://git.meso-star.com/solstice.git
Log | Files | Refs | README | LICENSE

commit ef8ff2b0190c23b9e26794958241fb7a1fb82a4f
parent 26edc230c7a0b699c4b369926e168a68319e0d84
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Fri,  2 Dec 2016 15:13:18 +0100

Add new (empty) files.

Diffstat:
Mcmake/CMakeLists.txt | 12++++++++++--
Asrc/solstice_entity.c | 17+++++++++++++++++
Asrc/solstice_object.c | 17+++++++++++++++++
3 files changed, 44 insertions(+), 2 deletions(-)

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -56,8 +56,16 @@ set(VERSION_MINOR 1) set(VERSION_PATCH 0) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) -set(SOLSTICE_FILES_SRC solstice.c solstice_material.c) -set(SOLSTICE_FILES_INC solstice.h solstice_c.h) +set(SOLSTICE_FILES_SRC + solstice.c + solstice_entity.c + solstice_material.c + solstice_object.c +) +set(SOLSTICE_FILES_INC + solstice.h + solstice_c.h +) set(SOLSTICE_FILES_DOC COPYING README.md) # Prepend each file in the `SOLSTICE_FILES_<SRC|INC>' list by `SOLSTICE_SOURCE_DIR' diff --git a/src/solstice_entity.c b/src/solstice_entity.c @@ -0,0 +1,17 @@ +/* Copyright (C) CNRS 2016 +* +* 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 3 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, see <http://www.gnu.org/licenses/>. */ + +#include "solstice.h" +#include "solstice_c.h" diff --git a/src/solstice_object.c b/src/solstice_object.c @@ -0,0 +1,17 @@ +/* Copyright (C) CNRS 2016 +* +* 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 3 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, see <http://www.gnu.org/licenses/>. */ + +#include "solstice.h" +#include "solstice_c.h"