[gluon] patch for headers and cmake module |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/gluon Archives
]
Hi,
it's me again. in kal/includes are two files missing, the KALSound and the KALSoundReader. I've attached them so you can easily add them.
Furthermore there is a bug in the FindKCL.cmake module. It is searchinig for kclengine.h which was renamed to kcldetect.h. The attached patch fixes the FindCKL.cmake module.
Regards, Mathias
#include "../gluon/kal/kalsound.h"
#include "../gluon/kal/kalsoundreader.h"
diff --git a/cmake/modules/FindKCL.cmake b/cmake/modules/FindKCL.cmake
index c0ab062..ada9b15 100644
--- a/cmake/modules/FindKCL.cmake
+++ b/cmake/modules/FindKCL.cmake
@@ -18,7 +18,7 @@ endif (KCL_LIBRARY AND KCL_INCLUDE_DIR)
find_path(KCL_INCLUDE_DIR
NAMES
- gluon/kcl/kclengine.h
+ gluon/kcl/kcldetect.h
PATHS
${INCLUDE_INSTALL_DIR}
)