You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2016/05/23 18:52:25 UTC

[2/2] celix git commit: CELIX-262: Fixes wrong cmake examples in documentation

CELIX-262: Fixes wrong cmake examples in documentation


Project: http://git-wip-us.apache.org/repos/asf/celix/repo
Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/feea43ed
Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/feea43ed
Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/feea43ed

Branch: refs/heads/develop
Commit: feea43ed76e802686e1224793956593510307584
Parents: c4060e6
Author: Pepijn Noltes <pe...@gmail.com>
Authored: Mon May 23 20:54:16 2016 +0200
Committer: Pepijn Noltes <pe...@gmail.com>
Committed: Mon May 23 20:54:16 2016 +0200

----------------------------------------------------------------------
 documents/getting_started/readme.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/feea43ed/documents/getting_started/readme.md
----------------------------------------------------------------------
diff --git a/documents/getting_started/readme.md b/documents/getting_started/readme.md
index 5257233..6a70ce7 100644
--- a/documents/getting_started/readme.md
+++ b/documents/getting_started/readme.md
@@ -33,7 +33,7 @@ Then create a CMakeLists.txt file - the makefile variant of CMake -in project ro
 #${WS}/myproject/CMakeLists.txt
 	
 #PART 1
-cmake_minimum_required(VERSION 3)
+cmake_minimum_required(VERSION 3.2)
 project(myproject C)
 
 #PART 2
@@ -78,7 +78,8 @@ And add the following CMakeList.txt file:
 
 add_bundle(hello_world
     VERSION 1.0.0
-	SOURCES(private/src/activator)
+	SOURCES
+        private/src/activator
 )	
 ```