Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-29 | Remove "-rdynamic" flag for static builds (#300) | Eric Pruitt | |
cmake adds `-rdynamic` on linux, even for static builds. This commit removes it for linux builds by resetting `CMAKE_SHARED_LIBRARY_LINK_C_FLAGS`. | |||
2019-04-06 | Bump version to 0.29.0. | John MacFarlane | |
2019-03-18 | Bump CMake to version 3 | Jonathan Müller | |
2017-11-18 | Also run API tests with CMARK_SHARED=OFF | Nick Wellnhofer | |
2017-10-21 | BUmp to 0.28.3 | John MacFarlane | |
2017-10-12 | Bump to 0.28.2, update changelog. | John MacFarlane | |
2017-10-10 | Bump to 0.28.1, update changelog. | John MacFarlane | |
2017-08-01 | Bump version to 0.28.0. | John MacFarlane | |
2017-06-27 | Add Makefile target and harness to fuzz with libFuzzer | Phil Turnbull | |
This can be run locally with `make libFuzzer` but the harness will be integrated into oss-fuzz for large-scale fuzzing. | |||
2017-01-06 | Make shared and static libraries optional | Azamat H. Hackimov | |
Now you can enable/disable compilation and installation targets for shared and static libraries via -DCMARK_SHARED=ON/OFF and -DCMARK_STATIC=ON/OFF | |||
2016-11-19 | Bump version to 0.27.1, update changelog. | John MacFarlane | |
2016-11-18 | Bump to 0.27.0. | John MacFarlane | |
2016-07-16 | Bump to 0.26.1. | John MacFarlane | |
2016-07-15 | Bump version to 0.26.0 | John MacFarlane | |
2016-06-27 | Change export install location | Jonathan Müller | |
2016-06-27 | Fix cmake warning about CMP0048 | Jonathan Müller | |
2016-06-27 | Export the targets on installation | Jonathan Müller | |
This allows using them in other cmake projects. | |||
2016-03-26 | Version bump to 0.25.2. | John MacFarlane | |
2016-03-24 | Updated version to 0.25.0. | John MacFarlane | |
2016-03-10 | Moved the cmake minimum version to top line | tinysun212 | |
In the file CMakeLists.txt, the required version should be placed to top line. The information could not used at CMake/Modules/CYGWIN.cmake under Cygwin. | |||
2016-01-17 | Bump to 0.24.1, updated changelog. | John MacFarlane | |
2016-01-12 | Bump version to 0.24.0 | John MacFarlane | |
2015-12-28 | Bump version to 0.23. | John MacFarlane | |
2015-08-23 | Version bump to 0.22.0. | John MacFarlane | |
2015-08-11 | Add option to disable tests | Kevin Wojniak | |
2015-07-14 | Bump version to 0.21.0. | John MacFarlane | |
2015-06-06 | Updated version to 0.20.0. | John MacFarlane | |
2015-05-29 | Added Ubsan build target, to check for undefined behavior. | John MacFarlane | |
2015-04-27 | Bump version to 0.19.0. | John MacFarlane | |
2015-04-01 | Bump version to 0.18.3. | John MacFarlane | |
2015-03-30 | Updated version to 0.18.2 | John MacFarlane | |
2015-03-09 | Version to 0.18.1. | John MacFarlane | |
2015-03-03 | Updated version to 0.18. | John MacFarlane | |
2015-02-19 | Added 'Asan' build type. | John MacFarlane | |
`make asan` will link against ASan; the resulting executable will do checks for memory access issues. Thanks @JordanMilne for the suggestion. | |||
2015-01-28 | Added Profile build type, 'make prof' target. | John MacFarlane | |
2015-01-24 | Updated version in CMakeLists.txt. | John MacFarlane | |
2015-01-23 | Set version in CMakeLists to 0.16.0. | John MacFarlane | |
See #296. | |||
2015-01-23 | Let cmake update version | Nick Wellnhofer | |
Add a new template cmark_version.h.in to generate cmark_version.h containing version information. | |||
2014-12-31 | Rename test builddir to 'build/testdir' | Nick Wellnhofer | |
The directory 'build/test' clashed with the 'test' Makefile target. Since nmake doesn't support phony targets, the tests wouldn't be run on Windows. | |||
2014-12-30 | Require cmake >= 2.8.9, use a ppa for travis. | John MacFarlane | |
`package_find(PythonInterp)` doesn't find python 3.2 with the cmake travis provides. | |||
2014-11-29 | Moved testing programs to test/. | John MacFarlane | |
Added test/CMakeLists.txt. | |||
2014-11-29 | Moved man page generation to man/CMakeLists.txt. | John MacFarlane | |
Removed doxygen stuff for now. It seems too complex for what we need. We'll find another way to create cmark.3. | |||
2014-11-28 | Framework for using doxygen to generate API docs. | John MacFarlane | |
Added Makefile target for doxygen-generated man page. Added Doxyfile. Added man/man3/cmark.3 (generated by doxygen) to install targets. | |||
2014-11-27 | Renamed runtests.py -> spec_tests.py. | John MacFarlane | |
2014-11-27 | Added pathological_tests.py to test suite. | John MacFarlane | |
2014-11-24 | Set test environment on Windows | Nick Wellnhofer | |
Add directory containing cmark.dll to PATH on Windows. | |||
2014-11-20 | Use --no-normalize in tests. | John MacFarlane | |
2014-11-19 | Further runtests.py improvements. | John MacFarlane | |
Better handling of br. Distinguish between a case where there's space on the next line and one where there isn't. Added --test-normalization flag to test normalization feature. | |||
2014-11-18 | Added python version of test runner. | John MacFarlane | |
This tests the dynamic library when run without a second argument. The code makes use of an amended version of the normalization method from karlcow/markdown-testsuite. Closes #161. | |||
2014-11-18 | Start with tests for the C API | Nick Wellnhofer | |
The C API tests can be run individually via build/api_test/api_test Or together with the spec tests via cmake --build build --target test |