summaryrefslogtreecommitdiffstats
path: root/cmake_unofficial
Commit message (Collapse)AuthorAgeFilesLines
* don't use variable eval syntax in if()Georg Sauthoff2016-08-271-3/+3
| | | | | | | because it is substituted before if() is executed cf. the last section of e.g.: https://cmake.org/cmake/help/v3.1/command/if.html
* don't link the tools against the shared libraryGeorg Sauthoff2016-08-271-7/+8
| | | | | | | | by default. reason: to have analogous behavior as with the official makefile (using a shared library might have the side effect of slower execution)
* remove additional -fPIC switch becauseGeorg Sauthoff2016-08-271-14/+9
| | | | | | | | | | - cmake is smart enough to add this flag on its own (for object files that it links into a shared library) - cmake contains two sets of oject files - the position-dependent ones and the position-independent ones - and uses each set accordingly (for linking the executable, static library, shared library) - having an executable that unnecessarily contains position-independent code has performance implications
* use gnu c99 to get both c99 and POSIXGeorg Sauthoff2016-08-271-10/+12
| | | | | | when compiling with gcc fixes fileno() implicitly defined on Linx and compile error on Solaris 10
* cmake: Install liblz4.pcKevin Cernekee2016-04-181-0/+9
| | | | This performs the same substitutions as lib/Makefile.
* Remove whitespace from ends of linesJulius Werner2016-02-131-6/+6
| | | | | | | I'm trying to import LZ4 code into a project with strict linting requirements. This will make that easier. Signed-off-by: Julius Werner <jwerner@chromium.org>
* added static build target for OSX and Linux to cmakePeter Steinbach2015-12-151-3/+15
|
* Wrapped possibly empty string (Emscripten) with quotes (@Fordi)Yann Collet2015-08-231-3/+3
|
* cmake: when building library make it sharedEvgeniy Polyakov2015-08-151-1/+1
|
* cmake: bump version to the latest releaseEvgeniy Polyakov2015-08-151-1/+1
|
* Fix cmake build to use gnu flags on clangTodd Lipcon2015-06-251-3/+8
| | | | | | Previously, the cmake build was only adding -fPIC and -std=c99 on gcc. However, these flags are also appropriate when building with clang.
* Install the lz4frame.h header in the cmake buildEric Berge2015-04-281-1/+2
|
* cmake support for AIX, HPUX, Solaris and WindowsEric Berge2015-04-231-0/+10
| | | | | | | | | | The following changes allow for builds on AIX and HPUX with the native (non-gcc) compilers, as well as Visual Studio 2008 and Visual Studio 2012. Also work around a build error with gcc on Solaris which fails due to the system detecting an attempt to use C99 mode with an XPG mode less than XPG6.
* minor CMakeLists updateYann Collet2015-03-161-7/+3
|
* Merge pull request #60 from Cyberunner23/masterYann Collet2015-03-161-3/+1
|\ | | | | Removed checking of CMAKE_SYSTEM_PROCESSOR when adding -fPIC, breaks whe...
| * Removed checking of CMAKE_SYSTEM_PROCESSOR when adding -fPIC, breaks when ↵Cyberunner232015-03-151-3/+1
| | | | | | | | that var is '64bit'.
* | Updated Cmake configuration for non-gnu compileralexDarcy2015-03-111-0/+3
|/
* New : lz4frame integrated into liblz4 (v1.5.0)Yann Collet2014-12-131-2/+2
|
* New directory structure : library source files into /lib directoryYann Collet2014-11-301-1/+1
|
* Update cmakelist to support new lz4io versionYann Collet2014-11-301-2/+2
|
* Added : cmake testYann Collet2014-11-041-4/+5
| | | cmake : corrected xxhash path (thanks to j.magnuson)
* minor cmake refreshYann Collet2014-08-211-4/+4
|
* Large decompression speed improvement for GCC 32-bits. Thanks to Valery ↵yann.collet.73@gmail.com2014-02-041-1/+1
| | | | | | | | | | | Croizier ! LZ4HC : Compression Level is now a programmable parameter (CLI from 4 to 9) Separated IO routines from command line (lz4io.c) Version number into lz4.h (suggested by Francesc Alted) git-svn-id: https://lz4.googlecode.com/svn/trunk@113 650e7d94-2a16-8b24-b05c-7c0b3f6821cd
* Makefile : added capability to install librariesyann.collet.73@gmail.com2014-01-071-0/+81
Modified Directory tree, to better separate libraries from programs. git-svn-id: https://lz4.googlecode.com/svn/trunk@111 650e7d94-2a16-8b24-b05c-7c0b3f6821cd