solstice-anim

Geometry animation library of the solstice app
git clone git://git.meso-star.com/solstice-anim.git
Log | Files | Refs | README | LICENSE

commit 54cfb7ea46370257612761f913ac2d13c4fe58f8
parent 5e7e082255efa7af3c69a42d682e7267b921a108
Author: christophe coustet <christophe.coustet@meso-star.com>
Date:   Mon, 17 Dec 2018 15:48:03 +0100

Fix link order on Ubuntu that prevented building tests.

Diffstat:
Mcmake/CMakeLists.txt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -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()