Diff for /imach/CMakeLists.txt between versions 1.5 and 1.10

version 1.5, 2015/09/15 17:57:21 version 1.10, 2015/12/16 08:51:13
Line 6 Line 6
 #      FORCE)  #      FORCE)
 #  endif()  #  endif()
 # SET (CMAKE_CONFIGURATION_TYPES "Debug;RelWithDebinfo" CACHE STRING "" FORCE)  # SET (CMAKE_CONFIGURATION_TYPES "Debug;RelWithDebinfo" CACHE STRING "" FORCE)
   set(PACKAGE_NAME "imach")
 SET(IMACH_VERSION_MAJOR 0)  SET(IMACH_VERSION_MAJOR 0)
 SET(IMACH_VERSION_MINOR 98r0)  SET(IMACH_VERSION_MINOR 98r4)
 SET(IMACH_VERSION_PATCH 0)  SET(IMACH_VERSION_PATCH 0)
 SET(IMACH_VERSION_NOTE "")  SET(IMACH_VERSION_NOTE "")
 SET(IMACH_VERSION ${IMACH_VERSION_MAJOR}.${IMACH_VERSION_MINOR})  SET(IMACH_VERSION ${IMACH_VERSION_MAJOR}.${IMACH_VERSION_MINOR})
Line 91  install(FILES "html/doc/biaspar.imach" D Line 92  install(FILES "html/doc/biaspar.imach" D
 install(FILES "html/doc/data1.txt" DESTINATION "${DOCDIR}")  install(FILES "html/doc/data1.txt" DESTINATION "${DOCDIR}")
 #install(FILES "html" DESTINATION "${DOCDIR}")  #install(FILES "html" DESTINATION "${DOCDIR}")
   
   
 set(CPACK_PACKAGE_VERSION ${IMACH_VERSION})  set(CPACK_PACKAGE_VERSION ${IMACH_VERSION})
 set(CPACK_PACKAGE_NAME "IMaCh")  set(CPACK_PACKAGE_NAME "imach")
 set(CPACK_PACKAGE_RELEASE 2)  set(CPACK_PACKAGE_RELEASE 2)
 set(CPACK_PACKAGE_CONTACT "Nicolas Brouard")  set(CPACK_PACKAGE_CONTACT "Nicolas Brouard")
 set(CPACK_PACKAGE_VENDOR "INED")  set(CPACK_PACKAGE_VENDOR "INED")
Line 240  ADD_TEST(biaspar  IMaCh-${IMACH_VERSION} Line 242  ADD_TEST(biaspar  IMaCh-${IMACH_VERSION}
 #   endif()  #   endif()
 # endif()  # endif()
 # Add a target to generate API documentation with Doxygen  # Add a target to generate API documentation with Doxygen
 find_package(Doxygen)  if(UNIX)
 if(DOXYGEN_FOUND)    find_package(Doxygen)
 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/latex/Doxyfile.in    if(DOXYGEN_FOUND)
 ${CMAKE_CURRENT_BINARY_DIR}/latex/Doxyfile @ONLY)      configure_file(${CMAKE_CURRENT_SOURCE_DIR}/latex/Doxyfile.in
 add_custom_target(doc        ${CMAKE_CURRENT_BINARY_DIR}/latex/Doxyfile @ONLY)
 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/latex/Doxyfile      add_custom_target(doc
 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/latex        ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/latex/Doxyfile
 COMMENT "Generating IMaCh documentation with Doxygen" VERBATIM        WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/latex
 )        COMMENT "Generating IMaCh documentation with Doxygen" VERBATIM
         )
     endif()
 endif()  endif()
   

Removed from v.1.5  
changed lines
  Added in v.1.10


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>