summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
AgeCommit message (Collapse)Author
2019-03-18Bump CMake to version 3Jonathan Müller
2017-11-18Also run API tests with CMARK_SHARED=OFFNick Wellnhofer
2017-10-21BUmp to 0.28.3John MacFarlane
2017-10-12Bump to 0.28.2, update changelog.John MacFarlane
2017-10-10Bump to 0.28.1, update changelog.John MacFarlane
2017-08-01Bump version to 0.28.0.John MacFarlane
2017-06-27Add Makefile target and harness to fuzz with libFuzzerPhil Turnbull
This can be run locally with `make libFuzzer` but the harness will be integrated into oss-fuzz for large-scale fuzzing.
2017-01-06Make shared and static libraries optionalAzamat 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-19Bump version to 0.27.1, update changelog.John MacFarlane
2016-11-18Bump to 0.27.0.John MacFarlane
2016-07-16Bump to 0.26.1.John MacFarlane
2016-07-15Bump version to 0.26.0John MacFarlane
2016-06-27Change export install locationJonathan Müller
2016-06-27Fix cmake warning about CMP0048Jonathan Müller
2016-06-27Export the targets on installationJonathan Müller
This allows using them in other cmake projects.
2016-03-26Version bump to 0.25.2.John MacFarlane
2016-03-24Updated version to 0.25.0.John MacFarlane
2016-03-10Moved the cmake minimum version to top linetinysun212
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-17Bump to 0.24.1, updated changelog.John MacFarlane
2016-01-12Bump version to 0.24.0John MacFarlane
2015-12-28Bump version to 0.23.John MacFarlane
2015-08-23Version bump to 0.22.0.John MacFarlane
2015-08-11Add option to disable testsKevin Wojniak
2015-07-14Bump version to 0.21.0.John MacFarlane
2015-06-06Updated version to 0.20.0.John MacFarlane
2015-05-29Added Ubsan build target, to check for undefined behavior.John MacFarlane
2015-04-27Bump version to 0.19.0.John MacFarlane
2015-04-01Bump version to 0.18.3.John MacFarlane
2015-03-30Updated version to 0.18.2John MacFarlane
2015-03-09Version to 0.18.1.John MacFarlane
2015-03-03Updated version to 0.18.John MacFarlane
2015-02-19Added '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-28Added Profile build type, 'make prof' target.John MacFarlane
2015-01-24Updated version in CMakeLists.txt.John MacFarlane
2015-01-23Set version in CMakeLists to 0.16.0.John MacFarlane
See #296.
2015-01-23Let cmake update versionNick Wellnhofer
Add a new template cmark_version.h.in to generate cmark_version.h containing version information.
2014-12-31Rename 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-30Require 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-29Moved testing programs to test/.John MacFarlane
Added test/CMakeLists.txt.
2014-11-29Moved 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-28Framework 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-27Renamed runtests.py -> spec_tests.py.John MacFarlane
2014-11-27Added pathological_tests.py to test suite.John MacFarlane
2014-11-24Set test environment on WindowsNick Wellnhofer
Add directory containing cmark.dll to PATH on Windows.
2014-11-20Use --no-normalize in tests.John MacFarlane
2014-11-19Further 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-18Added 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-18Start with tests for the C APINick 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
2014-11-16Fixed cmake add_test syntax.John MacFarlane
2014-11-12Added cmake test target.John MacFarlane