diff options
author | Andreas Holzammer <andy@kdab.com> | 2010-07-12 13:39:10 +0000 |
---|---|---|
committer | Andreas Holzammer <andy@kdab.com> | 2010-07-12 13:39:10 +0000 |
commit | bc451d8de618decb1ddd20ca1539ca0b8a08fc87 (patch) | |
tree | 91f62ef7a3ae6ee1cf972ed36124403cdfff5df2 /modules/FindSoprano.cmake | |
parent | 786680cdb287a4f23429b45780037c86c55aafc1 (diff) | |
download | extra-cmake-modules-bc451d8de618decb1ddd20ca1539ca0b8a08fc87.tar.gz extra-cmake-modules-bc451d8de618decb1ddd20ca1539ca0b8a08fc87.tar.bz2 |
- made kdelibs compile for wince
- disabled some functionality for wince
- changed some stuff to unicode functions
svn path=/trunk/KDE/kdelibs/; revision=1149056
Diffstat (limited to 'modules/FindSoprano.cmake')
-rw-r--r-- | modules/FindSoprano.cmake | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/FindSoprano.cmake b/modules/FindSoprano.cmake index 4cc4334a..e9d8ce36 100644 --- a/modules/FindSoprano.cmake +++ b/modules/FindSoprano.cmake @@ -52,12 +52,20 @@ find_program(SOPRANO_SOPRANOCMD_EXECUTABLE ${KDE4_BIN_INSTALL_DIR} ) +if(NOT WINCE) find_program(SOPRANO_ONTO2VOCABULARYCLASS_EXECUTABLE NAMES onto2vocabularyclass HINTS ${BIN_INSTALL_DIR} ${KDE4_BIN_INSTALL_DIR} ) +else(NOT WINCE) +find_program(SOPRANO_ONTO2VOCABULARYCLASS_EXECUTABLE + NAMES onto2vocabularyclass + PATHS ${HOST_BINDIR} + NO_DEFAULT_PATH + ) +endif(NOT WINCE) find_path(SOPRANO_INCLUDE_DIR |