aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 6bf4cd6adc280bf0e1eba08aee8a71f9941eea11 (plain)
  1. project(cmark)
  2. cmake_minimum_required(VERSION 2.8.9)
  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. add_subdirectory(man)
  14. enable_testing()
  15. add_subdirectory(test testdir)
  16. if(NOT CMAKE_BUILD_TYPE)
  17. set(CMAKE_BUILD_TYPE "Release" CACHE STRING
  18. "Choose the type of build, options are: Debug Release." FORCE)
  19. endif(NOT CMAKE_BUILD_TYPE)