Merge pull request #109 from dlfcn-win32/updatecontrib Cleanup README and add CODEOWNERS file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
new file mode 100644
index 0000000..1a0030b
--- /dev/null
+++ b/.github/CODEOWNERS
@@ -0,0 +1 @@
+* @traversaro
diff --git a/README.md b/README.md
index c4ea414..f9328fb 100644
--- a/README.md
+++ b/README.md
@@ -11,18 +11,18 @@ Windows without any modifications.
It follows the standard as described here:
-http://www.opengroup.org/onlinepubs/009695399/basedefs/dlfcn.h.html
-http://www.opengroup.org/onlinepubs/009695399/functions/dlerror.html
-http://www.opengroup.org/onlinepubs/009695399/functions/dlsym.html
-http://www.opengroup.org/onlinepubs/009695399/functions/dlclose.html
-http://www.opengroup.org/onlinepubs/009695399/functions/dlopen.html
+* http://www.opengroup.org/onlinepubs/009695399/basedefs/dlfcn.h.html
+* http://www.opengroup.org/onlinepubs/009695399/functions/dlerror.html
+* http://www.opengroup.org/onlinepubs/009695399/functions/dlsym.html
+* http://www.opengroup.org/onlinepubs/009695399/functions/dlclose.html
+* http://www.opengroup.org/onlinepubs/009695399/functions/dlopen.html
Using This Library
------------------
### Using CMake
Once the library has been installed, add to your project `CMakeLists.txt` :
-~~~
+~~~cmake
...
find_package(dlfcn-win32 REQUIRED)
...
@@ -32,7 +32,7 @@ target_link_libraries(<target> dlfcn-win32::dl)
If you want to use this library in a cross-platform project, a convenient way
to proceed is to define the CMake variable [`CMAKE_DL_LIBS`](https://cmake.org/cmake/help/latest/variable/CMAKE_DL_LIBS.html)
(that is normally empty on Windows) and then use it for linking:
-~~~
+~~~cmake
...
if (WIN32)
find_package(dlfcn-win32 REQUIRED)
@@ -43,13 +43,21 @@ target_link_libraries(<target> ${CMAKE_DL_LIBS})
...
~~~
-When cross-compiling you might want to set CMAKE_CROSSCOMPILING_EMULATOR to the path of wine to run tests.
+When cross-compiling you might want to set [`CMAKE_CROSSCOMPILING_EMULATOR`](https://cmake.org/cmake/help/latest/variable/CMAKE_CROSSCOMPILING_EMULATOR.html) to the path of wine to run tests.
+
+Authors
+-------
+
+Contributors:
+* [Pali Rohar (`pali`)](https://github.com/pali)
+* [Timothy Gu (`TimothyGu`)](https://github.com/TimothyGu)
+* [Ramiro Polla (`ramiropolla`)](https://github.com/ramiropolla)
+* [Ralf Habacker (`rhabacker`)](https://github.com/rhabacker)
+* [`xantares`](https://github.com/xantares)
-Author
-------
-Written by Ramiro Polla in 2007.
-Maintained by Tiancheng "Timothy" Gu from 2013.
+Mantainer:
+* [Silvio Traversaro (`traversaro`)](https://github.com/traversaro)
License
-------