Repository: celix Updated Branches: refs/heads/feature/CELIX-335_deploy_refactoring 49ab9ab53 -> d2be40f30
CELIX-335: Remove bundle examples with explicit lib location (platform dependend) Project: http://git-wip-us.apache.org/repos/asf/celix/repo Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/d2be40f3 Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/d2be40f3 Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/d2be40f3 Branch: refs/heads/feature/CELIX-335_deploy_refactoring Commit: d2be40f30479e072afc61afe3b1f31751ef1796f Parents: 49ab9ab Author: Pepijn Noltes <[email protected]> Authored: Thu Jan 7 16:59:25 2016 +0100 Committer: Pepijn Noltes <[email protected]> Committed: Thu Jan 7 16:59:25 2016 +0100 ---------------------------------------------------------------------- examples/hello_world_test/CMakeLists.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/celix/blob/d2be40f3/examples/hello_world_test/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/examples/hello_world_test/CMakeLists.txt b/examples/hello_world_test/CMakeLists.txt index 49df4ff..39198ed 100644 --- a/examples/hello_world_test/CMakeLists.txt +++ b/examples/hello_world_test/CMakeLists.txt @@ -38,14 +38,14 @@ add_library(tlib SHARED ) set_library_version(tlib "4.3.2") # sets target propery VERSION to 4.3.2 and SOVERSION to 4 -bundle_private_libs(hellotest1 - #/usr/local/lib/libjansson.4.dylib - /usr/lib64/libjansson.so.4 -) +#bundle_private_libs(hellotest1 +# #/usr/local/lib/libjansson.4.dylib +# /usr/lib64/libjansson.so.4 +#) bundle_private_libs(hellotest1 tlib #/usr/lib/libcurl.4.dylib - /usr/lib64/libcurl.so.4 + # /usr/lib64/libcurl.so.4 ) @@ -77,10 +77,10 @@ add_bundle(hellotest2 ACTIVATOR hello2act ) -add_bundle(hellotest3 - VERSION "2.1.2" +#add_bundle(hellotest3 +# VERSION "2.1.2" #ACTIVATOR /usr/local/lib/libjansson.4.dylib - ACTIVATOR /usr/lib64/libjansson.so.4 -) + #ACTIVATOR /usr/lib64/libjansson.so.4 + #)
