summaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authoryann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd>2013-02-19 20:52:50 (GMT)
committeryann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd>2013-02-19 20:52:50 (GMT)
commite898c9a79a91083805e9a733c2c0917aa7d24820 (patch)
treed196b25953d902f8c212a542273ae43082187089 /cmake
parentc1d7e4f67598d8a86ff5a912730f47f65c9cb8db (diff)
downloadlz4-e898c9a79a91083805e9a733c2c0917aa7d24820.zip
lz4-e898c9a79a91083805e9a733c2c0917aa7d24820.tar.gz
lz4-e898c9a79a91083805e9a733c2c0917aa7d24820.tar.bz2
Corrected issue 59 in lz4hc.c, reported by Masafumi Kiribayashi
Corrected issue 60 in lz4.h, reported by Takayuki Matsuoka Added : a cmake/pack installer, by Dmitry Cherepanov git-svn-id: https://lz4.googlecode.com/svn/trunk@89 650e7d94-2a16-8b24-b05c-7c0b3f6821cd
Diffstat (limited to 'cmake')
-rw-r--r--cmake/pack/CMakeLists.txt82
-rw-r--r--cmake/pack/release_COPYING.txt21
2 files changed, 103 insertions, 0 deletions
diff --git a/cmake/pack/CMakeLists.txt b/cmake/pack/CMakeLists.txt
new file mode 100644
index 0000000..80adbb3
--- /dev/null
+++ b/cmake/pack/CMakeLists.txt
@@ -0,0 +1,82 @@
+cmake_minimum_required (VERSION 2.8)
+PROJECT(LZ4)
+
+############################## CPACK
+set(SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../)
+set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "LZ4 Packer")
+set(CPACK_PACKAGE_VERSION_MAJOR 0)
+set(CPACK_PACKAGE_VERSION_MINOR 0)
+set(CPACK_PACKAGE_VERSION_PATCH r89)
+#set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_BINARY_DIR}/COPYING_LGPL)
+##############################
+FIND_PACKAGE(Subversion)
+IF(SUBVERSION_FOUND)
+ Subversion_WC_INFO(${SRC_DIR} revision)
+ set(revision_MY_WC_STATUS "LZ4 has revision ${revision_WC_REVISION} at ${revision_WC_LAST_CHANGED_DATE}")
+ message(STATUS ${revision_MY_WC_STATUS})
+ if(NOT ${revision_WC_REVISION})
+ else(NOT ${revision_WC_REVISION})
+ set(CPACK_PACKAGE_VERSION_PATCH "r${revision_WC_REVISION}")
+ endif(NOT ${revision_WC_REVISION})
+ELSE(SUBVERSION_FOUND)
+ message(WARNING "NO Subversion FOUND!!!")
+ENDIF(SUBVERSION_FOUND)
+set(VERSION_STRING " \"${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}\" ")
+##############################
+INCLUDE (CheckTypeSize)
+check_type_size("void *" SIZEOF_VOID_P)
+IF( ${SIZEOF_VOID_P} STREQUAL "8" )
+ set (CMAKE_SYSTEM_PROCESSOR "64bit")
+ MESSAGE( STATUS "64 bit architecture detected size of void * is " ${SIZEOF_VOID_P})
+ENDIF()
+############################### warnings
+
+ADD_DEFINITIONS("-Wall")
+ADD_DEFINITIONS("-W")
+ADD_DEFINITIONS("-Wundef")
+ADD_DEFINITIONS("-Wcast-align")
+ADD_DEFINITIONS("-Wno-implicit-function-declaration")
+ADD_DEFINITIONS("-O3 -march=native -std=c99")
+INCLUDE_DIRECTORIES (${SRC_DIR})
+
+
+
+set(LZ4_SRCS_LIB ${SRC_DIR}lz4.c ${SRC_DIR}lz4hc.c ${SRC_DIR}lz4.h ${SRC_DIR}lz4_format_description.txt)
+set(LZ4_SRCS ${LZ4_SRCS_LIB} ${SRC_DIR}bench.c ${SRC_DIR}lz4demo.c )
+set(FIZZER_SRCS ${SRC_DIR}lz4.c ${SRC_DIR}lz4hc.c ${SRC_DIR}lz4.h ${SRC_DIR}fuzzer.c)
+
+# EXECUTABLES FOR 32 Bit and 64 versions
+if(CMAKE_SYSTEM_PROCESSOR STREQUAL "64bit")
+ add_executable(lz4demo32 ${LZ4_SRCS})
+ install(TARGETS lz4demo32 RUNTIME DESTINATION "./")
+SET_TARGET_PROPERTIES(lz4demo32 PROPERTIES
+ COMPILE_FLAGS PROPERTIES COMPILE_FLAGS "-m32 -Os" LINK_FLAGS "-m32")
+endif()
+
+add_executable(lz4demo ${LZ4_SRCS})
+install(TARGETS lz4demo RUNTIME DESTINATION "./")
+
+add_executable(fuzzer ${FIZZER_SRCS})
+install(TARGETS fuzzer RUNTIME DESTINATION "./")
+
+#target_link_libraries(lz4 ${LZ4_SRCS_LIB})
+####################### CPACK PACKAGING ###################
+install(FILES ${SRC_DIR}lz4_format_description.txt DESTINATION "./")
+
+set(CPACK_PACKAGE_NAME ${CMAKE_PROJECT_NAME})
+set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_LIST_DIR}/release_COPYING.txt")
+set(CPACK_PACKAGE_VENDOR "Yann Collet")
+set(CPACK_WWW_SITE "http://fastcompression.blogspot.com/p/lz4.html")
+set(CPACK_NSIS_URL_INFO_ABOUT "${CPACK_WWW_SITE}")
+set(CPACK_NSIS_HELP_LINK "${CPACK_WWW_SITE}")
+
+set(CPACK_NSIS_DISPLAY_NAME ${CPACK_PACKAGE_NAME})
+set(CPACK_NSIS_COMPRESSOR "/SOLID lzma \r\n SetCompressorDictSize 32")
+
+set(CPACK_NSIS_MENU_LINKS
+ "${CPACK_WWW_SITE}" "${CPACK_PACKAGE_NAME} homepage"
+ "/lz4_format_description.txt " "lz4 format description"
+ "/" "LZ4 directory "
+)
+
+include (CPack)
diff --git a/cmake/pack/release_COPYING.txt b/cmake/pack/release_COPYING.txt
new file mode 100644
index 0000000..32cec0d
--- /dev/null
+++ b/cmake/pack/release_COPYING.txt
@@ -0,0 +1,21 @@
+
+ lz4demo and fuzzer is an open-source demo compression algorithm LZ4 programs
+ Copyright (C) Yann Collet 2012
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+ You can contact the author at :
+ - LZ4 homepage : http://fastcompression.blogspot.com/p/lz4.html
+ - LZ4 source repository : http://code.google.com/p/lz4/