CMakeLists.txt

Branch


Log

Author Commit Date CI Message
Kentaro Fukuchi 50b3e572 2020-09-28T03:01:27 Bumped version to 4.1.1.
Kentaro Fukuchi f63b5e6e 2020-08-29T14:41:19 getopt library's name has been corrected.
Mika Lindqvist d3ba592a 2020-08-28T17:16:36 Fix for Visual C++ (#157) * Fix tests failing when compiled with Visual C++.
Rosen Penev ba51efc3 2020-07-07T17:24:51 fix qrencode without libpng Signed-off-by: Rosen Penev <rosenp@gmail.com>
sdf5 43949633 2018-07-27T11:51:40 Change CMAKE_SOURCE_DIR to CMAKE_CURRENT_SOURCE_DIR in CMAKE_MODULE_PATH
Michał Górny 8cfd42d7 2018-06-07T08:05:25 cmake: Support pthread in the main library Improve pthread support for the main library when building via CMake. Explicitly request pthread when multiple threading options are available since the code is using pthread directly. Set HAVE_LIBPTHREAD to trigger the code, link the library and list it in pkg-config file.
Michał Górny 73e9c83b 2018-06-07T07:54:03 cmake: Update paths in generated pkg-config file Update paths inside the pkg-config file to respect GNUInstallDirs. Fixes: 07805253ab5d115cb2918b4860a559967ab98bed
Kentaro Fukuchi fa8b13c5 2018-06-06T16:20:44 Preparing 4.1 branch.
Michał Górny 07805253 2018-06-05T17:44:45 cmake: Use GNUInstallDirs for configurable install directories Use CMake GNUInstallDirs module to provide variables for configurable install directories. This is necessary to install libqrencode on amd64 systems where libraries belong in /usr/lib64 rather than /usr/lib. While at it, make all install directories configurable for user's convenience.
Kentaro Fukuchi 7c83deb8 2018-06-04T20:13:56 Bumped version to 4.0.1.
Kentaro Fukuchi e1a91d08 2018-06-04T19:44:31 Tabs expanded.
Kentaro Fukuchi fb59fd29 2018-06-04T18:21:53 STATIC_IN_RELEASE is now set to "static" when WITH_TESTS is disabled. (closes #126)
Kentaro Fukuchi 201a5e27 2018-06-02T21:36:46 Added "WITHOUT_PNG" option that builds qrencode without PNG support. (closes #125)
Kentaro Fukuchi c520fac6 2017-09-07T14:42:27 Bumped version to 4.0.0.
KangLin 9908062b 2017-08-04T10:07:46 Fix: Getopt.h is checked only by WITH_TOOLS
Vanilla Hsu be5a88f8 2017-03-04T19:36:29 1: Add version of shared library. 2: fix libqrencode.pc.
Vilppu Vuorinen 9697779e 2017-02-02T15:39:46 Added BUILD_SHARED_LIBS option with MSVC export all
Aleksey Nikolaev 5e91d7ae 2017-01-17T21:02:46 ICONV lib check hack when it is a part of glibc
Aleksey Nikolaev f376266b 2017-01-17T20:08:15 The check iconv without lib (it is a part of the glibc)
Aleksey Nikolaev 5e8aa01d 2017-01-17T17:31:41 Reverted the BUILD_TESTING option and marked as deprecated. Rewritten the FindIconv.cmake.
Aleksey Nikolaev eb618fc7 2017-01-16T14:51:50 MSVC debug postfix
Aleksey Nikolaev a4c9fda5 2017-01-16T14:00:32 Made imported target for ICONV. Organized the tests by dependencies.
Aleksey Nikolaev e87c3dc4 2017-01-13T19:47:36 Compiled with Ladislav Sopko fork. Added FindIconv.cmake
Aleksey Nikolaev 2bad46ea 2017-01-13T13:13:44 cmake command case
André Klitzing f0f0dd3f 2016-09-27T13:45:17 Fix cmake build and add support for tests
André Klitzing 247559eb 2016-06-16T08:09:07 Add CMakeLists.txt to build project with cmake This will help to build library on non-unix systems. Example Linux: cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=true -DCMAKE_BUILD_TYPE=release make make install Example MinGW: cmake . -DBUILD_SHARED_LIBS=true -DCMAKE_BUILD_TYPE=release -G "MinGW Makefiles" mingw32-make closes #78