ObjFW  Changes To ObjFW

Changes to "ObjFW" between 2020-05-23 14:20:06 and 2020-05-23 14:20:32

105
106
107
108
109
110
111
112
113
114



115
116
117
118
119
120
121
105
106
107
108
109
110
111



112
113
114
115
116
117
118
119
120
121







-
-
-
+
+
+







`LDFLAGS` required to compile code that uses ObjFW. For example, you could do
it like this:
```
clang -Wall `objfw-config --all` -o foobar foobar.m
```
Or, if you don't want to do compilation and linking in one step:
```
gcc -Wall `objfw-config --cppflags --objcflags` foo.m
gcc -Wall `objfw-config --cppflags --objcflags` bar.m
gcc `objfw-config --ldflags --libs` -o foobar foo.o bar.o
clang -Wall `objfw-config --cppflags --objcflags` foo.m
clang -Wall `objfw-config --cppflags --objcflags` bar.m
clang `objfw-config --ldflags --libs` -o foobar foo.o bar.o
```

## Is there a list of 3rd-party libraries for ObjFW?

Yes! There is a [wiki
page](https://github.com/Midar/objfw/wiki/3rd-party-libraries) where 3rd-party
libraries for ObjFW are listed. However, this list is not official and