diff options
| author | Alexander Golubev <fatzer2@gmail.com> | 2024-02-03 11:47:04 +0300 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-07 18:22:03 +0900 |
| commit | 75d69350ab57f01e296cd0672188c1a453cf75dc (patch) | |
| tree | fabf899100cd64a72cd7f4ce1122a6fb732d74a4 /src | |
| parent | aaf98109d9c1522d8c3e6ca13b95e12fae853fe6 (diff) | |
| download | libr-75d69350ab57f01e296cd0672188c1a453cf75dc.tar.gz libr-75d69350ab57f01e296cd0672188c1a453cf75dc.zip | |
Make dependency upon gtk optional
Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
(cherry picked from commit c3ef8bdc0d7a325c8ece072a2c38d1dbc290adb5)
Diffstat (limited to 'src')
| -rw-r--r-- | src/CMakeLists.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9026ea2..272d74c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -34,10 +34,13 @@ set( ${target}_SRCS onecanvas.c libr-icons.c libr-i18n.c - libr-gtk.c libr.c ) +if( WITH_GTK ) + list( APPEND ${target}_SRCS libr-gtk.c ) +endif( WITH_GTK ) + tde_add_library( ${target} SHARED VERSION 1.0.0 @@ -61,10 +64,13 @@ set( ${target}_INCLUDES gettext.h libr-icons.h libr-i18n.h - libr-gtk.h libr.h ) +if( WITH_GTK ) + list( APPEND ${target}_INCLUDES libr-gtk.h ) +endif( WITH_GTK ) + install( FILES ${${target}_INCLUDES} DESTINATION ${INCLUDE_INSTALL_DIR}/libr |
