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 ef5d9ede84a74375e391c5abd7320dac85ed4798
parent 31e8a83c9223e3e5c6da302074594ec21647fc31
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 25 Jan 2017 11:10:27 +0100

Remove the useless C++ dependency

Diffstat:
Mcmake/CMakeLists.txt | 2+-
Mcmake/parser/CMakeLists.txt | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -14,7 +14,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. cmake_minimum_required(VERSION 2.8) -project(solstice C CXX) +project(solstice C) enable_testing() option(NO_TEST "Do not build tests" OFF) diff --git a/cmake/parser/CMakeLists.txt b/cmake/parser/CMakeLists.txt @@ -14,7 +14,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. cmake_minimum_required(VERSION 2.8) -project(solstice-parser C CXX) +project(solstice-parser C) set(SOLPARSER_SOURCE_DIR ${PROJECT_SOURCE_DIR}/../../src/parser)