Repository: celix Updated Branches: refs/heads/feature/CELIX-335_deploy_refactoring 61a711389 -> 9ba259e91
CELIX-335: Fix wrong linking in example Project: http://git-wip-us.apache.org/repos/asf/celix/repo Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/9ba259e9 Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/9ba259e9 Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/9ba259e9 Branch: refs/heads/feature/CELIX-335_deploy_refactoring Commit: 9ba259e91fb8effeff6b93d63d14fda6026cfc05 Parents: 61a7113 Author: Pepijn Noltes <[email protected]> Authored: Sat Jan 9 20:56:40 2016 +0100 Committer: Pepijn Noltes <[email protected]> Committed: Sat Jan 9 20:56:40 2016 +0100 ---------------------------------------------------------------------- examples/dm_example/phase2a/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/celix/blob/9ba259e9/examples/dm_example/phase2a/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/examples/dm_example/phase2a/CMakeLists.txt b/examples/dm_example/phase2a/CMakeLists.txt index f5617fa..d540dc5 100644 --- a/examples/dm_example/phase2a/CMakeLists.txt +++ b/examples/dm_example/phase2a/CMakeLists.txt @@ -33,5 +33,5 @@ include_directories( IF(APPLE) target_link_libraries(phase2a celix_framework -Wl,-all_load dependency_manager_static) else() -target_link_libraries(phase2a -Wl,--whole-archive dependency_manager -Wl,--no-whole-archive celix_framework_static) +target_link_libraries(phase2a -Wl,--whole-archive dependency_manager_static -Wl,--no-whole-archive celix_framework) ENDIF()
