Remove check for LLKDU source in the tree before downloading the pre-built lib.

master
Aimee Linden 2010-08-13 13:20:02 +01:00
parent b36224bda0
commit c4e5de1b27
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# -*- cmake -*-
include(Prebuilt)
if (INSTALL_PROPRIETARY AND NOT STANDALONE AND EXISTS ${LIBS_CLOSED_DIR}/llkdu)
if (INSTALL_PROPRIETARY AND NOT STANDALONE)
use_prebuilt_binary(kdu)
if (WINDOWS)
set(KDU_LIBRARY debug kdu_cored optimized kdu_core)
@ -15,4 +15,4 @@ if (INSTALL_PROPRIETARY AND NOT STANDALONE AND EXISTS ${LIBS_CLOSED_DIR}/llkdu)
set(LLKDU_STATIC_LIBRARY llkdu_static)
set(LLKDU_LIBRARIES ${LLKDU_LIBRARY})
set(LLKDU_STATIC_LIBRARIES ${LLKDU_STATIC_LIBRARY})
endif (INSTALL_PROPRIETARY AND NOT STANDALONE AND EXISTS ${LIBS_CLOSED_DIR}/llkdu)
endif (INSTALL_PROPRIETARY AND NOT STANDALONE)