From b24aa2700342fa39cf9af46913ebad46be7586bd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Peter=20K=C3=BCmmel?= Date: Tue, 4 Sep 2007 19:26:57 +0000 Subject: [PATCH] fix cmake file for minizip git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20049 a592a061-630c-0410-9148-cb99ea01b6c8 --- development/cmake/src/support/CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/development/cmake/src/support/CMakeLists.txt b/development/cmake/src/support/CMakeLists.txt index c914136b87..51a46d5e7f 100644 --- a/development/cmake/src/support/CMakeLists.txt +++ b/development/cmake/src/support/CMakeLists.txt @@ -9,9 +9,9 @@ project(support) file(GLOB support_sources ${TOP_SRC_DIR}/src/support/${LYX_CPP_FILES}) file(GLOB support_headers ${TOP_SRC_DIR}/src/support/${LYX_HPP_FILES}) -file(GLOB support_minzip_sources ${TOP_SRC_DIR}/src/support/minizip/*.c) -file(GLOB support_minzip_cpp_sources ${TOP_SRC_DIR}/src/support/minizip/*.cpp) -file(GLOB support_min_zip_headers ${TOP_SRC_DIR}/src/support/minizip/*.h) +file(GLOB support_minizip_sources ${TOP_SRC_DIR}/src/support/minizip/*.c) +file(GLOB support_minizip_cpp_sources ${TOP_SRC_DIR}/src/support/minizip/*.cpp) +file(GLOB support_minizip_headers ${TOP_SRC_DIR}/src/support/minizip/*.h) list(REMOVE_ITEM support_sources ${TOP_SRC_DIR}/src/support/os_win32.cpp @@ -32,13 +32,13 @@ include_directories(${TOP_SRC_DIR}/src/support if(NOT MERGE_FILES) - set(support_sources ${support_sources} ${support_minzip_sources}) - set(support_headers ${support_headers} ${support_minzip_headers}) + set(support_sources ${support_sources} ${support_minizip_sources} ${support_minizip_cpp_sources}) + set(support_headers ${support_headers} ${support_minizip_headers}) add_library(support ${library_type} ${support_sources} ${support_headers}) else() lyx_const_touched_files(_allinone support_sources) add_library(support ${library_type} ${_allinone_files} - ${support_minzip_sources} ${support_minzip_cpp_sources}) + ${support_minizip_sources} ${support_minizip_cpp_sources}) endif() -- 2.39.2