Skip to content

Commit 0b5031c

Browse files
committed
fix README.md
1 parent e150feb commit 0b5031c

File tree

10 files changed

+68
-59
lines changed

10 files changed

+68
-59
lines changed

.mulle/share/env/environment-plugin.sh

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.mulle/share/env/version

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required( VERSION 3.14)
22

33
project( mulle-objc-developer NONE)
44

5-
set( PROJECT_VERSION 0.26.0)
5+
set( PROJECT_VERSION 0.26.1)
66

77

88
if( APPLE)

README.md

Lines changed: 5 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,14 @@
22

33
#### 🎩 mulle-objc developer kit for mulle-sde
44

5-
This is a collection of [mulle-sde](//github.com/mulle-sde/mulle-sde)
5+
This is a collection of [mulle-sde](//github.com/mulle-sde)
66
*extensions* to support development of [MulleObjC](//github.com/mulle-objc)
77
code. As a package **mulle-objc-developer** is also a convenient way to
88
install mulle-sde and [mulle-clang](//github.com/Codeon-GmbH/mulle-clang).
99

1010

1111

1212

13-
| Release Version | Release Notes
14-
|-------------------------------------------------------|--------------
15-
| ![Mulle kybernetiK tag](https://img.shields.io/github/tag/mulle-objc/mulle-objc-developer.svg?branch=release) [![Build Status](https://github.com/mulle-objc/mulle-objc-developer/workflows/CI/badge.svg?branch=release)](//github.com/mulle-objc/mulle-objc-developer/actions) | [RELEASENOTES](RELEASENOTES.md) |
16-
1713

1814

1915

@@ -27,51 +23,14 @@ install mulle-sde and [mulle-clang](//github.com/Codeon-GmbH/mulle-clang).
2723

2824

2925

30-
## Add
31-
32-
### Add as an individual component
33-
34-
Use [mulle-sde](//github.com/mulle-sde) to add mulle-objc-developer to your project:
35-
36-
``` sh
37-
mulle-sde add github:mulle-objc/mulle-objc-developer
38-
```
39-
40-
To only add the sources of mulle-objc-developer with dependency
41-
sources use [clib](https://github.com/clibs/clib):
42-
43-
44-
``` sh
45-
clib install --out src/mulle-objc mulle-objc/mulle-objc-developer
46-
```
47-
48-
Add `-isystem src/mulle-objc` to your `CFLAGS` and compile all the sources that were downloaded with your project.
49-
5026

5127
## Install
5228

53-
### Install with mulle-sde
54-
55-
Use [mulle-sde](//github.com/mulle-sde) to build and install mulle-objc-developer:
56-
57-
``` sh
58-
mulle-sde install --prefix /usr/local \
59-
https://github.com/mulle-objc/mulle-objc-developer/archive/latest.tar.gz
60-
```
61-
62-
### Manual Installation
63-
64-
Install the [Requirements](#Requirements) and then
65-
install **mulle-objc-developer** with [cmake](https://cmake.org):
29+
Install [foundation-developer](//github.com/MulleFoundation/foundation-developer) and
30+
mulle-objc-developer will part of the deal.
6631

67-
``` sh
68-
cmake -B build \
69-
-DCMAKE_INSTALL_PREFIX=/usr/local \
70-
-DCMAKE_PREFIX_PATH=/usr/local \
71-
-DCMAKE_BUILD_TYPE=Release &&
72-
cmake --build build --config Release &&
73-
cmake --install build --config Release
74-
```
32+
> If you really want just mulle-objc-developer,
33+
> examine the "Script" approach and reduce the `OTHER_PROJECTS`.
7534
7635

7736
## Author

RELEASENOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.26.1
2+
3+
* Various small improvements
4+
15
## 0.26.0
26

37
* update version numbers to use unsigned long

cola/config.plist

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
config =
3+
{
4+
skipAdd = YES;
5+
};
6+
}

cola/description.md.bud

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
This is a collection of [mulle-sde](//github.com/mulle-sde/mulle-sde)
1+
This is a collection of [mulle-sde](//github.com/mulle-sde)
22
*extensions* to support development of [MulleObjC](//github.com/mulle-objc)
3-
code. As a package **mulle-objc-developer** is also a convenient way to
4-
install mulle-sde and [mulle-clang](//github.com/Codeon-GmbH/mulle-clang).
5-
3+
code.

cola/install.md.bud

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Install
2+
3+
Install [foundation-developer](//github.com/MulleFoundation/foundation-developer) and
4+
{{ project.name }} will part of the deal.
5+
6+
> If you really want just {{ project.name }},
7+
> examine the "Script" approach and reduce the `OTHER_PROJECTS`.

overview.dot

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
digraph sourcetree
2+
{
3+
rankdir = TD;
4+
node [ shape="box"; style="filled" ]
5+
"mulle-objc-developer" [ fillcolor="yellow"]
6+
// not inheriting from mulle-objc-developer
7+
"mulle-c-developer" [ fillcolor="white"]
8+
"mulle-sde-developer" [ fillcolor="white"]
9+
10+
"mulle-objc-developer" -> "mulle-c-developer" -> "mulle-sde-developer"
11+
}

overview.dot.svg

Lines changed: 30 additions & 6 deletions
Loading

0 commit comments

Comments
 (0)