|
Revision 1405, 0.9 kB
(checked in by timdewhirst, 4 months ago)
|
|
olibs
- add pkg_config template for cmake
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | |
|---|
| 2 | # |
|---|
| 3 | # pkgconfig for OpenLibraries |
|---|
| 4 | # |
|---|
| 5 | |
|---|
| 6 | prefix=@CMAKE_INSTALL_PREFIX@ |
|---|
| 7 | exec_prefix=@CMAKE_INSTALL_PREFIX@ |
|---|
| 8 | libdir=@CMAKE_INSTALL_PREFIX@/lib/@PACKAGE@ |
|---|
| 9 | includedir=@CMAKE_INSTALL_PREFIX@/include/@PACKAGE@ |
|---|
| 10 | |
|---|
| 11 | OPENIMAGELIB_PLUGINS=${libdir}/openimagelib/plugins |
|---|
| 12 | OPENMEDIALIB_PLUGINS=${libdir}/openmedialib/plugins |
|---|
| 13 | OPENEFFECTSLIB_PLUGINS=${libdir}/openeffectslib/plugins |
|---|
| 14 | OPENOBJECTLIB_PLUGINS=${libdir}/openobjectlib/plugins |
|---|
| 15 | OPENASSETLIB_PLUGINS=${libdir}/openassetlib/plugins |
|---|
| 16 | |
|---|
| 17 | Name: OpenLibraries |
|---|
| 18 | Description: OpenLibraries - a library suite for non-linear editing, visual effects and rich media applications. |
|---|
| 19 | Version: @VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@ |
|---|
| 20 | |
|---|
| 21 | Libs: -L${libdir}/openimagelib/lib -lopenimagelib_il \ |
|---|
| 22 | -L${libdir}/openmedialib/lib -lopenmedialib_ml \ |
|---|
| 23 | -L${libdir}/openpluginlib/lib -lopenpluginlib_pl \ |
|---|
| 24 | -L${libdir}/openassetlib/lib -lopenassetlib_al @EXTRA_LIBS@ |
|---|
| 25 | |
|---|
| 26 | Cflags: -I${includedir} @EXTRA_INCLUDES@ |
|---|
| 27 | |
|---|