diff options
author | aneejit1 <aneejit1@gmail.com> | 2022-11-02 15:32:03 +0000 |
---|---|---|
committer | aneejit1 <aneejit1@gmail.com> | 2022-11-02 15:32:03 +0000 |
commit | fc90ff2d616568447699a03fed514cb494d5329a (patch) | |
tree | 7141b3458b5901888fa2cdbea42fd0a4dbaf550a | |
parent | cc4aa0ad928ef9851db5d1e122ef9cc679866a81 (diff) | |
download | k3b-fc90ff2d616568447699a03fed514cb494d5329a.tar.gz k3b-fc90ff2d616568447699a03fed514cb494d5329a.zip |
Add sndfile include directories
When sndfile is not installed in /usr, a compilation failure in
plugins/decoder/libsndfile may occur due to a missing specification of
the include directory. The required directory variable is now added to
the "include_directories" statement.
Signed-off-by: aneejit1 <aneejit1@gmail.com>
-rw-r--r-- | plugins/decoder/libsndfile/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/decoder/libsndfile/CMakeLists.txt b/plugins/decoder/libsndfile/CMakeLists.txt index 7f8c947..f9a35ed 100644 --- a/plugins/decoder/libsndfile/CMakeLists.txt +++ b/plugins/decoder/libsndfile/CMakeLists.txt @@ -18,6 +18,7 @@ include_directories( ${CMAKE_SOURCE_DIR}/libk3bdevice ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} + ${SNDFILE_INCLUDE_DIRS} ) link_directories( |