aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: cb1944be83a9e7774ecd7fc5fb1848c1741b9832 (plain)
  1. project(cmark)
  2. cmake_minimum_required(VERSION 2.8)
  3. if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
  4. message(FATAL_ERROR "Do not build in-source.\nPlease remove CMakeCache.txt and the CMakeFiles/ directory.\nThen: mkdir build ; cd build ; cmake .. ; make")
  5. endif()
  6. set(PROJECT_NAME "cmark")
  7. set(PROJECT_VERSION_MAJOR 0)
  8. set(PROJECT_VERSION_MINOR 0)
  9. set(PROJECT_VERSION_PATCH 1)
  10. set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH} )
  11. add_subdirectory(src)
  12. add_subdirectory(api_test)
  13. if(UNIX)
  14. INSTALL(FILES man/man1/cmark.1 DESTINATION share/man/man1)
  15. endif(UNIX)
  16. enable_testing()
  17. # To get verbose output: cmake --build build --target "test" -- ARGS='-V'
  18. add_test(spectest_library
  19. python "${CMAKE_SOURCE_DIR}/runtests.py" "--no-normalize" "--spec"
  20. "${CMAKE_SOURCE_DIR}/spec.txt" "--library-dir" "${CMAKE_BINARY_DIR}/src"
  21. )
  22. add_test(NAME api_test COMMAND api_test)
  23. add_test(spectest_executable
  24. python "${CMAKE_SOURCE_DIR}/runtests.py" "--no-normalize" "--spec" "${CMAKE_SOURCE_DIR}/spec.txt" "--program" "${CMAKE_BINARY_DIR}/src/cmark"
  25. )
  26. if(NOT CMAKE_BUILD_TYPE)
  27. set(CMAKE_BUILD_TYPE "Release" CACHE STRING
  28. "Choose the type of build, options are: Debug Release." FORCE)
  29. endif(NOT CMAKE_BUILD_TYPE)