Skip to content
Snippets Groups Projects
Commit 73ca4eac authored by Aimee Linden's avatar Aimee Linden
Browse files

Reintroduce check for LLKDU source after downloading the prebuilt lib, to...

Reintroduce check for LLKDU source after downloading the prebuilt lib, to avoid adding a build dependency on it.
parent c4e5de1b
No related branches found
No related tags found
No related merge requests found
...@@ -3,16 +3,18 @@ include(Prebuilt) ...@@ -3,16 +3,18 @@ include(Prebuilt)
if (INSTALL_PROPRIETARY AND NOT STANDALONE) if (INSTALL_PROPRIETARY AND NOT STANDALONE)
use_prebuilt_binary(kdu) use_prebuilt_binary(kdu)
if (WINDOWS) if (EXISTS ${LIBS_CLOSED_DIR}/llkdu)
set(KDU_LIBRARY debug kdu_cored optimized kdu_core) if (WINDOWS)
else (WINDOWS) set(KDU_LIBRARY debug kdu_cored optimized kdu_core)
set(KDU_LIBRARY kdu) else (WINDOWS)
endif (WINDOWS) set(KDU_LIBRARY kdu)
endif (WINDOWS)
set(KDU_INCLUDE_DIR ${LIBS_PREBUILT_DIR}/include) set(KDU_INCLUDE_DIR ${LIBS_PREBUILT_DIR}/include)
set(LLKDU_LIBRARY llkdu) set(LLKDU_LIBRARY llkdu)
set(LLKDU_STATIC_LIBRARY llkdu_static) set(LLKDU_STATIC_LIBRARY llkdu_static)
set(LLKDU_LIBRARIES ${LLKDU_LIBRARY}) set(LLKDU_LIBRARIES ${LLKDU_LIBRARY})
set(LLKDU_STATIC_LIBRARIES ${LLKDU_STATIC_LIBRARY}) set(LLKDU_STATIC_LIBRARIES ${LLKDU_STATIC_LIBRARY})
endif (EXISTS ${LIBS_CLOSED_DIR}/llkdu)
endif (INSTALL_PROPRIETARY AND NOT STANDALONE) endif (INSTALL_PROPRIETARY AND NOT STANDALONE)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment