You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
520 B

  1. cmake_minimum_required (VERSION 2.6)
  2. project (MRMC-cpp)
  3. # The version number.
  4. set (MRMC_CPP_VERSION_MAJOR 1)
  5. set (MRMC_CPP_VERSION_MINOR 0)
  6. # configure a header file to pass some of the CMake settings
  7. # to the source code
  8. configure_file (
  9. "${PROJECT_SOURCE_DIR}/src/MRMCConfig.h.in"
  10. "${PROJECT_BINARY_DIR}/MRMCConfig.h"
  11. )
  12. # add the binary tree to the search path for include files
  13. # so that we will find TutorialConfig.h
  14. include_directories("${PROJECT_BINARY_DIR}")
  15. add_executable(MRMC-cpp src/mrmc-cpp.cpp)