add shared library template with examples subdirectory

This commit is contained in:
eddyem
2018-12-05 00:35:41 +03:00
parent bbc36d950d
commit bade2a36c0
10 changed files with 232 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
prefix=@CMAKE_INSTALL_PREFIX@
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
Name: @PROJ@
Description: Library with a lot of usefull snippets
Version: @VERSION@
Libs: -L${libdir} -l@PROJ@
Cflags: -I${includedir}