diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-06-05 08:51:22 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-06-05 08:51:22 +0200 |
commit | 2a00de476ed6c90dde94ddc8962b463bbcb81999 (patch) | |
tree | 45446aa3ec9feb45ae225df161ffdc695523884a /src/plugins/scripts/guile | |
parent | e6125608c01ce3e9115b9a98d14c7debdf04e866 (diff) | |
download | weechat-2a00de476ed6c90dde94ddc8962b463bbcb81999.zip |
guile: fix path of guile include dirs in cmake build (patch #7790)
Diffstat (limited to 'src/plugins/scripts/guile')
-rw-r--r-- | src/plugins/scripts/guile/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/scripts/guile/CMakeLists.txt b/src/plugins/scripts/guile/CMakeLists.txt index 7200ab090..2092f4e49 100644 --- a/src/plugins/scripts/guile/CMakeLists.txt +++ b/src/plugins/scripts/guile/CMakeLists.txt @@ -23,7 +23,7 @@ weechat-guile-api.c weechat-guile-api.h) SET_TARGET_PROPERTIES(guile PROPERTIES PREFIX "") IF(GUILE_FOUND) - INCLUDE_DIRECTORIES(${GUILE_INCLUDE_PATH}) + INCLUDE_DIRECTORIES(${GUILE_INCLUDE_DIRS}) SET(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${GUILE_LFLAGS}") TARGET_LINK_LIBRARIES(guile ${GUILE_LIBRARY} weechat_scripts) ENDIF(GUILE_FOUND) |