This is an automated email from the ASF dual-hosted git repository.
abroekhuis pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/develop by this push:
new 09047a4 Update creating_a_simple_bundle.md
new af33ee5 Merge pull request #189 from Ealanrian/patch-1
09047a4 is described below
commit 09047a4498d632d0106a05e3b3eed9ebad7a1dcb
Author: Ealanrian <[email protected]>
AuthorDate: Wed Apr 8 21:19:09 2020 +0200
Update creating_a_simple_bundle.md
Small fixes to fix the guide
---
documents/getting_started/creating_a_simple_bundle.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/documents/getting_started/creating_a_simple_bundle.md
b/documents/getting_started/creating_a_simple_bundle.md
index b13d9a0..67f91c2 100644
--- a/documents/getting_started/creating_a_simple_bundle.md
+++ b/documents/getting_started/creating_a_simple_bundle.md
@@ -64,7 +64,7 @@ SET(CMAKE_CXX_FLAGS_DEBUG "-g -DDEBUG")
#Part 3. Setup Celix cmake files, include paths, libraries and library paths
#Note. If celix is not installed in /usr/local dir, change the location
accordingly.
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH}
"/usr/local/share/celix/cmake/modules")
-find_package(CELIX REQUIRED)
+find_package(Celix REQUIRED)
#Part 4. Choose C, C++ or both
add_subdirectory(bundles/HelloWorld_c) #C
@@ -131,7 +131,7 @@ to generate the bundle activator functions (and as result
the symbols needed for
The C Bundle Activator:
```C
-//${WS}/myproject/bundles/hello_world/src/HelloWorld_activator.c
+//${WS}/myproject/bundles/HelloWorld_c/src/HelloWorld_activator.c
#include <stdio.h>
#include <celix_api.h>
@@ -157,7 +157,7 @@ CELIX_GEN_BUNDLE_ACTIVATOR(activator_data_t,
activator_start, activator_stop)
The C++ Bundle Activator:
```C++
-//${WS}/myproject/bundles/HelloWorld/private/src/HelloWorldActivator.cc
+//${WS}/myproject/bundles/HelloWorld_cxx/src/HelloWorldActivator.cc
#include <memory>
#include <iostream>