diff options
author | Gustavo Sverzut Barbieri <barbieri@profusion.mobi> | 2017-02-01 12:25:43 -0200 |
---|---|---|
committer | Gustavo Sverzut Barbieri <barbieri@profusion.mobi> | 2017-02-01 12:25:43 -0200 |
commit | 364c5c4cd8508121e98e640fead39abf724d93a1 (patch) | |
tree | b7ea8bc0da1a72720dffeeb147ebfdfdcd05a194 /src/lib/eet/CMakeLists.txt | |
parent | b6ded792400c098dbd0c17d39a3a8fee67bedf08 (diff) |
cmake: handle 'FindXXX.cmake' standard with 'find-XXX' libraries.
One can use virtual 'find-XXX' entries in LIBRARIES or
PUBLIC_LIBRARIES to use XXX_LIBRARIES and XXX_INCLUDE_DIR.
Diffstat (limited to '')
-rw-r--r-- | src/lib/eet/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eet/CMakeLists.txt b/src/lib/eet/CMakeLists.txt index 76b71a47b5..fb2c02d297 100644 --- a/src/lib/eet/CMakeLists.txt +++ b/src/lib/eet/CMakeLists.txt | |||
@@ -2,7 +2,6 @@ set(DESCRIPTION "Library for speedy data storage, retrieval, and compression") | |||
2 | 2 | ||
3 | set(PKG_CONFIG_REQUIRES_PRIVATE | 3 | set(PKG_CONFIG_REQUIRES_PRIVATE |
4 | zlib>=1.2.3 | 4 | zlib>=1.2.3 |
5 | #libjpeg is hard to find. there is a cmake module that does find it. and thats checked in common.cmake | ||
6 | ) | 5 | ) |
7 | 6 | ||
8 | set(PUBLIC_LIBRARIES | 7 | set(PUBLIC_LIBRARIES |
@@ -13,6 +12,7 @@ set(PUBLIC_LIBRARIES | |||
13 | set(LIBRARIES | 12 | set(LIBRARIES |
14 | m | 13 | m |
15 | support-rg_etc | 14 | support-rg_etc |
15 | find-JPEG | ||
16 | ) | 16 | ) |
17 | 17 | ||
18 | set(PUBLIC_HEADERS | 18 | set(PUBLIC_HEADERS |