commit 620f2b2b9b47ba516fd66ebd877abcdc0744ce94
parent 9d173b9a9f1b1d20f47dccce5ee16f6d9c8c74b4
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 18 Dec 2018 14:36:47 +0100
Merge branch 'release_0.2.2'
Diffstat:
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
@@ -23,6 +23,10 @@ variable the install directories of its dependencies.
## Release notes
+### Version 0.2.2
+
+- Fix a compilation issue that prevented building tests.
+
### Version 0.2.1
- Update the version of the RSys dependency to 0.6: replace the deprecated
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -41,7 +41,7 @@ rcmake_append_runtime_dirs(_runtime_dirs RSys)
################################################################################
set(VERSION_MAJOR 0)
set(VERSION_MINOR 2)
-set(VERSION_PATCH 1)
+set(VERSION_PATCH 2)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
set(SANIM_FILES_SRC
@@ -87,7 +87,7 @@ rcmake_setup_devel(solstice-anim SolAnim ${VERSION} solstice/sanim_version.h)
if(NOT NO_TEST)
function(new_test _name)
add_executable(${_name} ${SANIM_SOURCE_DIR}/${_name}.c)
- target_link_libraries(${_name} solstice-anim solstice-anim-test RSys)
+ target_link_libraries(${_name} solstice-anim-test solstice-anim RSys)
add_test(${_name} ${_name})
rcmake_set_test_runtime_dirs(${_name} _runtime_dirs)
endfunction()