Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 2, 2009, 9:27:37 PM (16 years ago)
Author:
rgrieder
Message:

Documentation fixes (windows still is non case sensitive..)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/cmake/DocumentationTarget.cmake

    r2633 r2635  
    7979    FIND_PACKAGE(HTMLHelp)
    8080    IF   (HTML_HELP_COMPILER)     
    81       SET (TMP "${CMAKE_CURRENT_BINARY_DIR}\\Doc\\html\\index.hhp")
     81      SET (TMP "${CMAKE_CURRENT_BINARY_DIR}\\doc\\html\\index.hhp")
    8282      STRING(REGEX REPLACE "[/]" "\\\\" HHP_FILE ${TMP} )
    8383      # MESSAGE(SEND_ERROR "DBG  HHP_FILE=${HHP_FILE}")
     
    9090      # should be project and version unique to allow installing
    9191      # multiple projects into one global directory     
    92       IF   (EXISTS "${PROJECT_BINARY_DIR}/Doc/html/index.chm")
     92      IF   (EXISTS "${PROJECT_BINARY_DIR}/doc/html/index.chm")
    9393        IF   (PROJECT_NAME)
    9494          SET(OUT "${PROJECT_NAME}")
     
    108108        SET(OUT  "${OUT}.chm")
    109109       
    110         #MESSAGE("DBG ${PROJECT_BINARY_DIR}/Doc/html/index.chm \n${OUT}")
     110        #MESSAGE("DBG ${PROJECT_BINARY_DIR}/doc/html/index.chm \n${OUT}")
    111111        # create target used by install and package commands
    112         INSTALL(FILES "${PROJECT_BINARY_DIR}/Doc/html/index.chm"
     112        INSTALL(FILES "${PROJECT_BINARY_DIR}/doc/html/index.chm"
    113113          DESTINATION "doc"
    114114          RENAME "${OUT}"
    115115        )
    116       ENDIF(EXISTS "${PROJECT_BINARY_DIR}/Doc/html/index.chm")
     116      ENDIF(EXISTS "${PROJECT_BINARY_DIR}/doc/html/index.chm")
    117117      ENDIF(NOT TARGET_DOC_SKIP_INSTALL)
    118118
Note: See TracChangeset for help on using the changeset viewer.