commit d6a29bb50ab1ee89dfefdc55dc4c20887c6d2093
parent 6b3109b669640ca102375c28014e7e362e72586d
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 7 Jun 2017 10:28:20 +0200
Merge branch 'release-0.2.1'
Diffstat:
2 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
@@ -2,7 +2,7 @@
The purpose of this program is to compute the total power collected by a
concentrated solar plant, and to evaluate various efficiencies for each primary
-reflector: it compute losses due to cosine effect, to shadowing and
+reflector: it computes losses due to cosine effect, to shadowing and
masking, to orientation and surface irregularities, to reflectivity and to
atmospheric transmission. The efficiency for each one of these effects is
subsequently computed for each reflector, which provides insightful information
@@ -48,7 +48,7 @@ It also depends on the
The documentation is written with the
[AsciiDoc](http://www.methods.co.nz/asciidoc/) text format and relies on its
tool suite to generate HTML and/or ROFF man pages. If the AsciiDoc tools cannot
-be find, the documentation will be not built.
+be found, the documentation will be not built.
First ensure that CMake is installed on your system. Then install the RCMake
package as well as the aforementioned prerequisites. Finally generate the
@@ -60,11 +60,16 @@ informations on CMake.
## Release notes
+### Version 0.2.1
+
+- Fix the install target on Windows: copy the solstice runtime libraries in the
+ solstice installation path.
+
### Version 0.2
- Add the support of an optional normal map to the materials. It defines
spatially varying normals in the tangent space of the surface. Currently,
- only the quadric surfaces are parameterized: using a normal mapped material
+ only the quadric surfaces are parameterizable: using a normal mapped material
on the other shapes will produce unforeseen behaviors.
- Add the support of spectral data to the materials: a material attribute can be
either a scalar or follow a spectral distribution.
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -100,7 +100,7 @@ configure_file(${SOLSTICE_SOURCE_DIR}/../doc/solstice.1.txt.in
################################################################################
set(VERSION_MAJOR 0)
set(VERSION_MINOR 2)
-set(VERSION_PATCH 0)
+set(VERSION_PATCH 1)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
set(SOLSTICE_FILES_SRC
@@ -193,4 +193,4 @@ install(TARGETS solstice
LIBRARY DESTINATION lib
RUNTIME DESTINATION bin)
install(FILES ${SOLSTICE_FILES_DOC} DESTINATION share/doc/solstice)
-
+rcmake_install_runtime_libraries(solstice)