]>
granicus.if.org Git - check/log
Mikko Johannes Koivunalho [Sat, 19 Oct 2019 22:59:21 +0000 (00:59 +0200)]
Correct wrong Win dynamic library name
Change from checkStatic to checkDynamic.
Was erroneously "checkStatic".
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 19 Oct 2019 22:57:38 +0000 (00:57 +0200)]
Add comments about library creation
Why we create both static and shared type of library?
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Mon, 16 Sep 2019 04:03:18 +0000 (21:03 -0700)]
Merge pull request #221 from mikkoi/more-todo
Add more items to TODO
Branden Archer [Sun, 15 Sep 2019 17:37:12 +0000 (10:37 -0700)]
Merge branch 'master' into more-todo
Branden Archer [Sun, 15 Sep 2019 17:36:26 +0000 (10:36 -0700)]
Merge pull request #220 from mikkoi/so-for-visual-studio
Shared Library for Visual Studio
Mikko Johannes Koivunalho [Sat, 14 Sep 2019 20:55:35 +0000 (22:55 +0200)]
Add more items to TODO
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 14 Sep 2019 19:16:50 +0000 (21:16 +0200)]
Remove unneeded include()
Already included in the project root CMakeLists.txt
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 14 Sep 2019 19:06:12 +0000 (21:06 +0200)]
Add option ENABLE_MEMORY_LEAKING_TESTS
Removing the set(MEMORY_LEAKING_TESTS_ENABLED) which
had no effect on the build.
The new CMake build option uses verb-first structure
(do something on something: e.g. ENABLE/BUILD) like other build
options. The definition itself is "MEMORY_LEAKING_TESTS_ENABLED"
and only enabled in the tests/ subdirectory.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 14 Sep 2019 17:31:40 +0000 (19:31 +0200)]
Correct indentation
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 14 Sep 2019 16:59:53 +0000 (18:59 +0200)]
Truncate PROJECT_VERSION to three components
For compatibility with the Autotools build which only
uses three parts: major, minor and patch.
CMake allows four components in version numbering:
major, minor, patch and tweak.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 14 Sep 2019 16:18:45 +0000 (18:18 +0200)]
Add variable VERSION to pkgconfig/check.pc configuration
File check.pc.in is shared with Autotools and CMake build.
File uses variable 'VERSION'.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 14 Sep 2019 16:15:48 +0000 (18:15 +0200)]
Remove the needless resetting of PROJECT_VERSION
Variable PROJECT_VERSION was not yet in use when check_stdint.h configuration was updated.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sun, 23 Jun 2019 08:50:22 +0000 (10:50 +0200)]
Add target shared library to CMake build
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Fri, 13 Sep 2019 20:31:04 +0000 (22:31 +0200)]
Add better explanation for '#define CK_DLL_EXP'
Mikko Johannes Koivunalho [Fri, 13 Sep 2019 20:12:48 +0000 (22:12 +0200)]
Remove MSVC specific dllexport
Target check is specifically a static library
Mikko Johannes Koivunalho [Sun, 23 Jun 2019 14:50:51 +0000 (16:50 +0200)]
Change definition CK_DLL_EXP from global to target specific
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sun, 8 Sep 2019 18:58:30 +0000 (20:58 +0200)]
Add libcompat code directly to libcheck
We have tried to statically link the built libcompat into built libcheck
in CMake without success. With autotools (libtool et.al.) this is
most likely very easy but there is no support on Windows.
So instead of building libcompat separately
we incorporate the necessary parts of libcompat code
directly into libcheck when building libcheck.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sun, 8 Sep 2019 14:48:32 +0000 (16:48 +0200)]
Start using GNUInstallDirs in every CMake install()
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Mon, 9 Sep 2019 01:25:13 +0000 (18:25 -0700)]
Merge pull request #209 from mikkoi/fix-small-issues-2
Fix small issues 2
Branden Archer [Sun, 8 Sep 2019 18:09:23 +0000 (11:09 -0700)]
Merge branch 'master' into fix-small-issues-2
Mikko Johannes Koivunalho [Sun, 8 Sep 2019 07:51:44 +0000 (09:51 +0200)]
Improve check_stdint.h creation in CMake
Will not convert m4/ax_create_stdint_h.m4 to CMake.
Make the resulting check_stdint.h similar to the old one
(as much as is possible).
GNU Autotools build is untouched. It continues to use m4 macro
and generates check_stdint.h from scratch.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Sun, 8 Sep 2019 16:56:20 +0000 (09:56 -0700)]
Merge pull request #212 from mikkoi/is-makeinfo-required
configure: optional build documentation
Mikko Johannes Koivunalho [Sun, 8 Sep 2019 09:54:31 +0000 (11:54 +0200)]
Add param @ONLY to CMake configure_file()
Restrict variable replacement to references of the form @VAR@.
This is useful for configuring scripts that also use ${VAR} syntax.
Adding @ONLY is precautionary action to prevent future bugs.
Attn. cmake/config.h.in contains ${VAR} in #cmakedefine clauses!
How to use CMake variable substitution.
Wrong:
#if @HAVE_FORK@
[..]
#endif
Because this will result as:
#if 1
[..]
#endif
Better:
/* Imported CMake variables created during build. */
#cmakedefine HAVE_FORK 1
#ifdef HAVE_FORK
[..]
#endif
Because this will result as:
/* Imported CMake variables created during build. */
#define HAVE_FORK 1
#ifdef HAVE_FORK
[..]
#endif
Or:
/* Imported CMake variables created during build. */
/* #undef HAVE_FORK */
[..]
This is more readable. Now we know which decision actually
was taken.
If you need to pass the parameter to the definition,
it is just as easy:
/* Imported CMake variables created during build. */
#cmakedefine CORRECT_SIZE @CORRECT_SIZE@
#if CORRECT_SIZE >= 20
[..]
#endif
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Mon, 2 Sep 2019 20:34:49 +0000 (22:34 +0200)]
Remove non-CMake style option CHECK_ENABLE_TESTS
It is a CMake best practice to include file 'CTest'
in the project main file and then use option
'BUILD_TESTING' (defined in 'CTest') to enable or disable
building the tests. BUILD_TESTING is ON by default.
https://cmake.org/cmake/help/v3.9/module/CTest.html?highlight=build_testing
https://cmake.org/cmake/help/v3.9/command/add_test.html?highlight=build_testing
Option CHECK_ENABLE_TESTS is deprecated.
Because it is on by default, deprecation warning is only shown
to user when user explicitly turns CHECK_ENABLE_TESTS off.
Suggesting to remove the option by release 0.15.0.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sun, 1 Sep 2019 18:44:42 +0000 (20:44 +0200)]
Fix missing macro undefinition
If we don't undefine the macro, it will enter the user's namespace.
This macro is only for our internal use.
Otherwise it would have the "CK_" prefix.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Mon, 2 Sep 2019 16:57:59 +0000 (18:57 +0200)]
Add pkgconfig/check.pc file generation to CMake
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Fri, 2 Aug 2019 05:08:25 +0000 (07:08 +0200)]
Reindent CMake file to 2 chars indentation
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Fri, 2 Aug 2019 04:15:19 +0000 (06:15 +0200)]
Add missing header file when HAVE_FORK
Function _exit(int) is included in unistd.h. Also fork() is here.
Functions exit(int) (C89) and _Exit(int) (C99) are in stdlib.h.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 8 Jun 2019 13:40:14 +0000 (15:40 +0200)]
Add HAVE_UNISTD_H to CMake and config.h.in
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sun, 23 Jun 2019 05:10:09 +0000 (07:10 +0200)]
Add 'cmake --version' to Travis script
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Tue, 3 Sep 2019 00:06:13 +0000 (17:06 -0700)]
Merge branch 'master' into is-makeinfo-required
Branden Archer [Tue, 3 Sep 2019 00:05:58 +0000 (17:05 -0700)]
Merge pull request #219 from mikkoi/fix-macro-definition
Fix missing macro undefinition
Mikko Johannes Koivunalho [Sat, 22 Jun 2019 16:49:37 +0000 (18:49 +0200)]
Add alarm.c to the build
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 8 Jun 2019 20:00:53 +0000 (22:00 +0200)]
Remove support for old CMake version
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 8 Jun 2019 19:55:05 +0000 (21:55 +0200)]
Add command 'cmake --version' to appveyor builds
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sun, 9 Jun 2019 18:35:06 +0000 (20:35 +0200)]
Create variables PROJECT_VERSION_*
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 8 Jun 2019 19:47:59 +0000 (21:47 +0200)]
Add tags DESCRIPTION and LANGUAGES to project()
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 8 Jun 2019 19:45:40 +0000 (21:45 +0200)]
Raise minimum CMake version to 3.9
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sun, 1 Sep 2019 18:44:42 +0000 (20:44 +0200)]
Fix missing macro undefinition
If we don't undefine the macro, it will enter the user's namespace.
This macro is only for our internal use.
Otherwise it would have the "CK_" prefix.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Sun, 1 Sep 2019 01:43:15 +0000 (18:43 -0700)]
Merge branch 'master' into is-makeinfo-required
Branden Archer [Sun, 1 Sep 2019 01:42:11 +0000 (18:42 -0700)]
Merge pull request #218 from mikkoi/improve-gcc-version-at-least
Improve macro GCC_VERSION_AT_LEAST(major, minor)
Branden Archer [Sat, 31 Aug 2019 07:02:06 +0000 (00:02 -0700)]
Merge branch 'master' into improve-gcc-version-at-least
Branden Archer [Sat, 31 Aug 2019 07:01:38 +0000 (00:01 -0700)]
Merge pull request #213 from mikkoi/fix-small-issues-3
Fix some issues that came up with Travis updating to Clang 7
Mikko Johannes Koivunalho [Fri, 30 Aug 2019 13:56:23 +0000 (15:56 +0200)]
Improve macro GCC_VERSION_AT_LEAST(major, minor)
Use also the patch number. Arguments: major, minor, pathch.
Issue #214 https://github.com/libcheck/check/issues/214
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Tue, 20 Aug 2019 08:44:12 +0000 (10:44 +0200)]
Add issue #206 to NEWS
https://github.com/libcheck/check/issues/206
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Thu, 29 Aug 2019 14:57:52 +0000 (16:57 +0200)]
configure: optional build documentation, travis
Tweak Travis build to support the new `./configure` switch.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Thu, 29 Aug 2019 14:52:52 +0000 (16:52 +0200)]
configure: optional build documentation, output
Add more output when running `./configure`.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Mon, 19 Aug 2019 18:32:35 +0000 (20:32 +0200)]
configure: optional build documentation
Fix issue https://github.com/libcheck/check/issues/206
Applied an uncommitted patch by Branden Archer.
https://sourceforge.net/p/check/bugs/101/
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Wed, 28 Aug 2019 12:08:09 +0000 (14:08 +0200)]
Fix indentation
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Wed, 28 Aug 2019 12:07:39 +0000 (14:07 +0200)]
Remove useless if clause.
warning: comparison of constant -1 with expression of type
'clockid_t' is always false [-Wtautological-constant-out-of-range-compare]
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Wed, 28 Aug 2019 11:12:22 +0000 (13:12 +0200)]
Add more info to AUTHORS
Mikko Johannes Koivunalho [Mon, 19 Aug 2019 17:11:04 +0000 (19:11 +0200)]
Initialize buffer to ensure it is empty
snprintf.c:918:31: warning: The left operand of '!=' is a garbage value
for (strln = 0; value[strln] != '\0' &&
~~~~~~~~~~~~ ^
Move "#include <string.h>" from testing related code to main code
because memset(3) depends on <string.h>.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Wed, 14 Aug 2019 08:56:25 +0000 (10:56 +0200)]
Fix declaration of extern int errno
if HAVE_VSNPRINTF is declared, <errno.h> is not included.
So we need to declare it ourselves.
Error (Travis SCAN_BUILD=YES):
libtool: compile: /usr/local/clang-7.0.0/bin/../libexec/ccc-analyzer -DHAVE_CONFIG_H -I. -I.. -g -O2 -Wextra -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings -Wno-variadic-macros -Wimport -Wfatal-errors -Wformat=2 -Winit-self -Wmissing-include-dirs -Wswitch-default -Wunknown-pragmas -MT snprintf.lo -MD -MP -MF .deps/snprintf.Tpo -c snprintf.c -fPIC -DPIC -o .libs/snprintf.o
764snprintf.c:487:1: warning: function declaration isn’t a prototype [-Wstrict-prototypes]
extern int errno;
^
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@inoviagroup.se>
Mikko Johannes Koivunalho [Tue, 13 Aug 2019 18:57:54 +0000 (20:57 +0200)]
Fix indentation
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Tue, 13 Aug 2019 18:53:46 +0000 (20:53 +0200)]
Fix warnings by flag -Wswitch-default
E.g.
check_print.c:114:13: warning: switch missing default case [-Wswitch-default]
switch (next)
^
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Sat, 13 Jul 2019 14:49:09 +0000 (07:49 -0700)]
Merge pull request #204 from mikkoi/add-checkmk-to-cmake
Add checkmk to cmake
Mikko Johannes Koivunalho [Sun, 9 Jun 2019 09:22:07 +0000 (11:22 +0200)]
Make checkmk installable
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 6 Jul 2019 09:25:57 +0000 (11:25 +0200)]
Add issue #196 to NEWS
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 6 Jul 2019 08:19:01 +0000 (10:19 +0200)]
Add Mikko Koivunalho to AUTHORS (contributor)
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 6 Jul 2019 08:17:49 +0000 (10:17 +0200)]
Increase version to 0.13.0
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Mon, 17 Jun 2019 04:56:33 +0000 (21:56 -0700)]
Merge pull request #198 from mikkoi/fix-cmake-project-name
Fix bug with CMake project variable
Mikko Johannes Koivunalho [Sat, 8 Jun 2019 11:54:32 +0000 (13:54 +0200)]
Fix bug with CMake project variable
"
I tried to embed the check source code into my project in a "3rdparty" folder. Turns out that the build fails because of the usage of CMAKE_PROJECT_NAME instead of PROJECT_NAME in the check CMakeLists.txt
CMAKE_PROJECT_NAME is the name of the topmost project, that is in my case my own project.
Changing to PROJECT_NAME worked fine.
"
https://github.com/libcheck/check/issues/194
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Tue, 4 Jun 2019 15:07:15 +0000 (08:07 -0700)]
Merge pull request #189 from mikkoi/improve-test_mem_leaks
Fix script to work from any path and to take argument
Branden Archer [Tue, 4 Jun 2019 00:01:11 +0000 (17:01 -0700)]
Merge branch 'master' into improve-test_mem_leaks
Branden Archer [Mon, 3 Jun 2019 23:57:45 +0000 (16:57 -0700)]
Merge pull request #193 from mikkoi/fix-todo-indentation
Realign TODO indentations
Mikko Koivunalho [Fri, 31 May 2019 08:30:17 +0000 (11:30 +0300)]
Fix script to work from any path and to take argument
Signed-off-by: Mikko Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Mon, 3 Jun 2019 04:00:52 +0000 (21:00 -0700)]
Merge branch 'master' into fix-todo-indentation
Branden Archer [Mon, 3 Jun 2019 03:58:53 +0000 (20:58 -0700)]
Merge pull request #191 from mikkoi/fix-signed-comparison
Change type from signed int to size_t
Branden Archer [Mon, 3 Jun 2019 00:34:17 +0000 (17:34 -0700)]
Merge branch 'master' into fix-signed-comparison
Branden Archer [Mon, 3 Jun 2019 00:33:10 +0000 (17:33 -0700)]
Merge pull request #190 from mikkoi/fix-abbreviations
Eliminate abbreviations like nf for number_failed
Branden Archer [Sun, 2 Jun 2019 22:07:50 +0000 (15:07 -0700)]
Merge branch 'master' into fix-abbreviations
Branden Archer [Sun, 2 Jun 2019 22:06:41 +0000 (15:06 -0700)]
Merge pull request #192 from mikkoi/fix-function-definition
Fix int main() function to "int main(void)"
Branden Archer [Sun, 2 Jun 2019 17:27:36 +0000 (10:27 -0700)]
Merge branch 'master' into fix-function-definition
Branden Archer [Sat, 1 Jun 2019 19:13:17 +0000 (12:13 -0700)]
Merge pull request #185 from mikkoi/improve-import
Improve import to CMake projects
Mikko Johannes Koivunalho [Fri, 31 May 2019 21:00:20 +0000 (23:00 +0200)]
Realign TODO indentations
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Fri, 31 May 2019 20:02:56 +0000 (22:02 +0200)]
Fix int main() function to "int main(void)"
check_mem_leaks.c:35:5: warning: function declaration isn’t a prototype [-Wstrict-prototypes]
int main ()
^~~~
Mikko Koivunalho [Fri, 31 May 2019 14:52:15 +0000 (17:52 +0300)]
Change type from signed int to size_t
check_pack.c:327:10: warning: comparison between signed and unsigned
integer expressions [-Wsign-compare]
if(n > get_max_msg_size())
^
Signed-off-by: Mikko Koivunalho <mikko.koivunalho@iki.fi>
Mikko Koivunalho [Fri, 31 May 2019 14:36:50 +0000 (17:36 +0300)]
Eliminate abbreviations like nf for number_failed
Signed-off-by: Mikko Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Sat, 18 May 2019 17:01:14 +0000 (10:01 -0700)]
Merge branch 'master' into improve-import
Branden Archer [Sat, 18 May 2019 15:45:20 +0000 (08:45 -0700)]
Merge pull request #182 from mikkoi/fix-typo
Fix typo, CMAKE_VERISON -> CMAKE_VERSION
Mikko Johannes Koivunalho [Sat, 11 May 2019 12:18:28 +0000 (14:18 +0200)]
Instructions how to import into CMake 3 project
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sat, 11 May 2019 11:30:36 +0000 (13:30 +0200)]
Improve CMake build, specify C standard
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Thu, 2 May 2019 20:02:56 +0000 (22:02 +0200)]
Improve exporting project
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Wed, 1 May 2019 06:18:50 +0000 (08:18 +0200)]
Fix typo in comments, wrong name of file
* not functional change.
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Tue, 30 Apr 2019 21:57:57 +0000 (23:57 +0200)]
Fix typo, CMAKE_VERISON -> CMAKE_VERSION
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Sun, 12 May 2019 05:07:10 +0000 (22:07 -0700)]
Merge pull request #184 from mikkoi/fix-windows-build
Possible fix for the failing Windows build
Mikko Johannes Koivunalho [Sat, 11 May 2019 09:17:41 +0000 (11:17 +0200)]
fix the rest of the builds: vs and mingw32
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Mikko Johannes Koivunalho [Sun, 5 May 2019 13:20:55 +0000 (15:20 +0200)]
Possible fix
* https://github.com/libcheck/check/pull/182#issuecomment-
489425824
Signed-off-by: Mikko Johannes Koivunalho <mikko.koivunalho@iki.fi>
Branden Archer [Wed, 23 Jan 2019 05:47:12 +0000 (21:47 -0800)]
Merge pull request #179 from evpobr/fix-cmake-package-config
Fix package config module for CMake >= 2.8.12
evpobr [Mon, 14 Jan 2019 09:24:47 +0000 (14:24 +0500)]
Fix package config module for CMake >= 2.8.12
Use target_include_directories() to add interface directories.
Now check target will add its include path to target it is linked to.
Branden Archer [Sat, 24 Nov 2018 06:05:29 +0000 (22:05 -0800)]
Merge pull request #175 from lhanson/patch-1
Fix typo
Lyle Hanson [Sat, 24 Nov 2018 04:01:22 +0000 (22:01 -0600)]
Fix typo
Change "failes" to "fails"
Branden Archer [Tue, 21 Aug 2018 12:53:50 +0000 (08:53 -0400)]
Merge pull request #170 from ozars/doxygen-devel-feature
Add development version of doxygen configuration
Omer Ozarslan [Fri, 17 Aug 2018 21:57:06 +0000 (16:57 -0500)]
Add development version of doxygen configuration
New target: doc/doxygen-devel
Create a new development version of doxygen configuration, which creates a more
verbose doxygen reference including functions and files not exposed to API and
their call graph. Call graphs require graphviz installed.
Branden Archer [Fri, 27 Jul 2018 20:19:30 +0000 (16:19 -0400)]
Merge pull request #168 from libcheck/update-webpage
Remove CloudBees button on webpage
Branden Archer [Fri, 27 Jul 2018 03:32:11 +0000 (23:32 -0400)]
Remove CloudBees button on webpage
The testing has migrated to Travis-CI.
Branden Archer [Tue, 17 Jul 2018 01:52:39 +0000 (21:52 -0400)]
Merge pull request #164 from ozars/readme-fix
Mention rebuilding linker cache in README
Omer Ozarslan [Mon, 16 Jul 2018 20:36:40 +0000 (15:36 -0500)]
Mention rebuilding linker cache in README (#155)
Branden Archer [Tue, 3 Jul 2018 23:10:28 +0000 (19:10 -0400)]
Merge pull request #162 from libcheck/travis
Build example on Travis-CI
Branden Archer [Mon, 2 Jul 2018 23:18:04 +0000 (19:18 -0400)]
Build example on Travis-CI