blob: 358e2126334eee3b3eff36dc2c4b54d6b5dca63c [file] [log] [blame]
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +00001INCLUDE(CheckFunctionExists)
2
3INSTALL(FILES zip.h DESTINATION include)
4
5# from http://www.cmake.org/Wiki/CMakeMacroLibtoolFile
6MACRO(GET_TARGET_PROPERTY_WITH_DEFAULT _variable _target _property _default_value)
7
8 GET_TARGET_PROPERTY (${_variable} ${_target} ${_property})
9 IF (${_variable} STREQUAL NOTFOUND)
10 SET (${_variable} ${_default_value})
11 ENDIF (${_variable} STREQUAL NOTFOUND)
12
13ENDMACRO (GET_TARGET_PROPERTY_WITH_DEFAULT)
14
15MACRO(CREATE_LIBTOOL_FILE _target _install_DIR)
16 GET_TARGET_PROPERTY(_target_location ${_target} LOCATION)
17 GET_TARGET_PROPERTY_WITH_DEFAULT(_target_static_lib ${_target} STATIC_LIB "")
18 GET_TARGET_PROPERTY_WITH_DEFAULT(_target_dependency_libs ${_target} LT_DEPENDENCY_LIBS "")
19 GET_TARGET_PROPERTY_WITH_DEFAULT(_target_current ${_target} LT_VERSION_CURRENT 0)
20 GET_TARGET_PROPERTY_WITH_DEFAULT(_target_age ${_target} LT_VERSION_AGE 0)
21 GET_TARGET_PROPERTY_WITH_DEFAULT(_target_revision ${_target} LT_VERSION_REVISION 0)
22 GET_TARGET_PROPERTY_WITH_DEFAULT(_target_installed ${_target} LT_INSTALLED yes)
23 GET_TARGET_PROPERTY_WITH_DEFAULT(_target_shouldnotlink ${_target} LT_SHOULDNOTLINK yes)
24 GET_TARGET_PROPERTY_WITH_DEFAULT(_target_dlopen ${_target} LT_DLOPEN "")
25 GET_TARGET_PROPERTY_WITH_DEFAULT(_target_dlpreopen ${_target} LT_DLPREOPEN "")
26 GET_FILENAME_COMPONENT(_laname ${_target_location} NAME_WE)
27 GET_FILENAME_COMPONENT(_soname ${_target_location} NAME)
28 SET(_laname ${_laname}.la)
29 FILE(WRITE ${_laname} "# ${_laname} - a libtool library file, generated by cmake \n")
30 FILE(APPEND ${_laname} "# The name that we can dlopen(3).\n")
31 FILE(APPEND ${_laname} "dlname='${_soname}'\n")
32 FILE(APPEND ${_laname} "# Names of this library\n")
33 FILE(APPEND ${_laname} "library_names='${_soname}.${_target_current}.${_target_age}.${_target_revision} ${_soname}.${_target_current} ${_soname}'\n")
34 FILE(APPEND ${_laname} "# The name of the static archive\n")
35 FILE(APPEND ${_laname} "old_library='${_target_static_lib}'\n")
36 FILE(APPEND ${_laname} "# Libraries that this one depends upon.\n")
37 FILE(APPEND ${_laname} "dependency_libs='${_target_dependency_libs}'\n")
38 FILE(APPEND ${_laname} "# Version information.\n")
39 FILE(APPEND ${_laname} "current=${_target_current}\n")
40 FILE(APPEND ${_laname} "age=${_target_age}\n")
41 FILE(APPEND ${_laname} "revision=${_target_revision}\n")
42 FILE(APPEND ${_laname} "# Is this an already installed library?\n")
43 FILE(APPEND ${_laname} "installed=${_target_installed}\n")
44 FILE(APPEND ${_laname} "# Should we warn about portability when linking against -modules?\n")
45 FILE(APPEND ${_laname} "shouldnotlink=${_target_shouldnotlink}\n")
46 FILE(APPEND ${_laname} "# Files to dlopen/dlpreopen\n")
47 FILE(APPEND ${_laname} "dlopen='${_target_dlopen}'\n")
48 FILE(APPEND ${_laname} "dlpreopen='${_target_dlpreopen}'\n")
49 FILE(APPEND ${_laname} "# Directory that this library needs to be installed in:\n")
Thomas Klausner79dc97c2007-03-04 10:42:36 +000050 FILE(APPEND ${_laname} "libdir='${CMAKE_INSTALL_PREFIX}/${_install_DIR}'\n")
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000051 INSTALL( FILES ${_laname} ${_soname}
52 DESTINATION ${CMAKE_INSTALL_PREFIX}${_install_DIR})
53ENDMACRO(CREATE_LIBTOOL_FILE)
54
55SET(LIBZIP_SOURCES
56 zip_add.c
57 zip_add_dir.c
Dieter Baron0e5eeab2012-04-24 18:47:12 +020058 zip_add_entry.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000059 zip_close.c
60 zip_delete.c
Thomas Klausner0830a772012-05-18 19:52:08 +020061 zip_dir_add.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000062 zip_dirent.c
Thomas Klausnerdd4cf742012-02-13 22:15:37 +010063 zip_discard.c
Dieter Baron0e5eeab2012-04-24 18:47:12 +020064 zip_entry.c
Thomas Klausnere946af22008-11-10 15:07:53 +010065 zip_err_str.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000066 zip_error.c
67 zip_error_clear.c
68 zip_error_get.c
69 zip_error_get_sys_type.c
70 zip_error_strerror.c
71 zip_error_to_str.c
Dieter Baron0e5eeab2012-04-24 18:47:12 +020072 zip_extra_field.c
73 zip_extra_field_api.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000074 zip_fclose.c
Thomas Klausneraa950062009-03-11 18:07:37 +010075 zip_fdopen.c
Thomas Klausner0830a772012-05-18 19:52:08 +020076 zip_file_add.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000077 zip_file_error_clear.c
78 zip_file_error_get.c
Thomas Klausner0830a772012-05-18 19:52:08 +020079 zip_file_get_comment.c
Thomas Klausner5b9854c2013-10-05 16:45:08 +020080 zip_file_get_external_attributes.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000081 zip_file_get_offset.c
Thomas Klausner0830a772012-05-18 19:52:08 +020082 zip_file_rename.c
83 zip_file_replace.c
84 zip_file_set_comment.c
Thomas Klausner5b9854c2013-10-05 16:45:08 +020085 zip_file_set_external_attributes.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000086 zip_file_strerror.c
Thomas Klausner0f38a2b2008-09-05 19:09:06 +020087 zip_filerange_crc.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000088 zip_fopen.c
Thomas Klausneraa950062009-03-11 18:07:37 +010089 zip_fopen_encrypted.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000090 zip_fopen_index.c
Thomas Klausneraa950062009-03-11 18:07:37 +010091 zip_fopen_index_encrypted.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000092 zip_fread.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000093 zip_get_archive_comment.c
Thomas Klausner0f38a2b2008-09-05 19:09:06 +020094 zip_get_archive_flag.c
Thomas Klausneraa950062009-03-11 18:07:37 +010095 zip_get_compression_implementation.c
96 zip_get_encryption_implementation.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000097 zip_get_file_comment.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +000098 zip_get_name.c
Thomas Klausner5c878fa2012-02-20 16:33:42 +010099 zip_get_num_entries.c
Thomas Klausneredfc5542008-11-09 15:17:21 +0100100 zip_get_num_files.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +0000101 zip_memdup.c
102 zip_name_locate.c
103 zip_new.c
104 zip_open.c
105 zip_rename.c
106 zip_replace.c
107 zip_set_archive_comment.c
Thomas Klausneredfc5542008-11-09 15:17:21 +0100108 zip_set_archive_flag.c
Dieter Baron5c02fc62009-03-11 18:10:47 +0100109 zip_set_default_password.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +0000110 zip_set_file_comment.c
Dieter Baron656cec12012-03-15 14:29:51 +0100111 zip_set_file_compression.c
Thomas Klausneredfc5542008-11-09 15:17:21 +0100112 zip_set_name.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +0000113 zip_source_buffer.c
Thomas Klausner730e2452009-03-30 15:55:05 +0200114 zip_source_close.c
Dieter Baron3291dac2009-03-12 15:56:36 +0100115 zip_source_crc.c
Thomas Klausneraa950062009-03-11 18:07:37 +0100116 zip_source_deflate.c
Thomas Klausner730e2452009-03-30 15:55:05 +0200117 zip_source_error.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +0000118 zip_source_file.c
119 zip_source_filep.c
120 zip_source_free.c
121 zip_source_function.c
Thomas Klausner730e2452009-03-30 15:55:05 +0200122 zip_source_layered.c
123 zip_source_open.c
Thomas Klausneraa950062009-03-11 18:07:37 +0100124 zip_source_pkware.c
Thomas Klausner730e2452009-03-30 15:55:05 +0200125 zip_source_pop.c
126 zip_source_read.c
127 zip_source_stat.c
Dieter Baronba561a62012-02-13 22:02:46 +0100128 zip_source_window.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +0000129 zip_source_zip.c
Dieter Baronba561a62012-02-13 22:02:46 +0100130 zip_source_zip_new.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +0000131 zip_stat.c
132 zip_stat_index.c
133 zip_stat_init.c
134 zip_strerror.c
Dieter Baron0e5eeab2012-04-24 18:47:12 +0200135 zip_string.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +0000136 zip_unchange.c
137 zip_unchange_all.c
138 zip_unchange_archive.c
139 zip_unchange_data.c
Thomas Klausnera70ca5d2011-04-09 00:34:27 +0200140 zip_utf-8.c
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +0000141)
142
143INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}
144 ${CMAKE_CURRENT_BINARY_DIR}/..)
145
Thomas Klausnerb52bda02013-11-28 18:01:40 +0100146# TODO: distribute instead?
Thomas Klausnere946af22008-11-10 15:07:53 +0100147#ADD_CUSTOM_COMMAND(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/zip_err_str.c
148# COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/make_zip_err_str.sh
149# ${CMAKE_CURRENT_SOURCE_DIR}/zip.h
150# ${CMAKE_CURRENT_BINARY_DIR}/zip_err_str.c
151# DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/zip.h
152# ${CMAKE_CURRENT_SOURCE_DIR}/make_zip_err_str.sh
153#)
Thomas Klausnerb58cf6f2007-03-04 10:35:18 +0000154CHECK_FUNCTION_EXISTS(mkstemp HAVE_MKSTEMP)
155IF(NOT HAVE_MKSTEMP)
156 SET(LIBZIP_EXTRA_FILES mkstemp.c)
157ENDIF(NOT HAVE_MKSTEMP)
158
159ADD_LIBRARY(zip SHARED ${LIBZIP_SOURCES} ${LIBZIP_EXTRA_FILES})
Thomas Klausner87628b42011-03-18 13:55:58 +0100160SET_TARGET_PROPERTIES(zip PROPERTIES VERSION 3.0 SOVERSION 3 )
Thomas Klausnerbae50cd2010-02-05 18:10:47 +0100161TARGET_LINK_LIBRARIES(zip ${ZLIB_LIBRARY})
Thomas Klausnere946af22008-11-10 15:07:53 +0100162INSTALL(TARGETS zip
163 ARCHIVE DESTINATION lib
164 LIBRARY DESTINATION lib)
Thomas Klausner79dc97c2007-03-04 10:42:36 +0000165#CREATE_LIBTOOL_FILE(zip lib)