Changeset 52 in pacpusframework for trunk


Ignore:
Timestamp:
01/09/13 09:33:51 (11 years ago)
Author:
Marek Kurdej
Message:

Fixed: whitespaces.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/CMakeLists.txt

    r34 r52  
    7777# ========================================
    7878if (PACPUS_BUILD_DOC)
    79   add_subdirectory(${PACPUS_DOC_DIR})
     79    add_subdirectory(${PACPUS_DOC_DIR})
    8080endif()
    8181
     
    9696pacpus_info("    Host:" ${CMAKE_HOST_SYSTEM_NAME} ${CMAKE_HOST_SYSTEM_VERSION} ${CMAKE_HOST_SYSTEM_PROCESSOR})
    9797if (CMAKE_CROSS_COMPILING)
    98   pacpus_info("    Target:" ${CMAKE_SYSTEM_NAME} ${CMAKE_SYSTEM_VERSION} ${CMAKE_SYSTEM_PROCESSOR})
     98    pacpus_info("    Target:" ${CMAKE_SYSTEM_NAME} ${CMAKE_SYSTEM_VERSION} ${CMAKE_SYSTEM_PROCESSOR})
    9999endif()
    100100pacpus_info("    CMake:" ${CMAKE_VERSION})
     
    102102pacpus_info("    CMake build tool:" ${CMAKE_BUILD_TOOL})
    103103if (MSVC)
    104   pacpus_info("    MSVC:" ${MSVC_VERSION})
     104    pacpus_info("    MSVC:" ${MSVC_VERSION})
    105105else()
    106   pacpus_info("    Configuration:" ${CMAKE_BUILD_TYPE})
     106    pacpus_info("    Configuration:" ${CMAKE_BUILD_TYPE})
    107107endif()
    108108pacpus_info("")
     
    121121pacpus_info("")
    122122if("${CMAKE_CURRENT_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}")
    123   message(WARNING "The src directory is the same as bin directory. \"make clean\" may damage the source tree")
     123    message(WARNING "The src directory is the same as bin directory. \"make clean\" may damage the source tree")
    124124endif()
  • trunk/doc/CMakeLists.txt

    r26 r52  
    99
    1010if(PACPUS_BUILD_DOC)
    11   # Debug
    12   pacpus_info("coucou")
    13   # Configure the template Doxyfile for our specific project
    14   configure_file(doxyfile.in ${CMAKE_BINARY_DIR}/Doxyfile @ONLY IMMEDIATE)
    15   # Add a custom target to run Doxygen when ever the project is built
    16   add_custom_target (
    17     documentation
    18         COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/Doxyfile
    19         SOURCES ${CMAKE_BINARY_DIR}/Doxyfile)
     11    # Debug
     12    pacpus_info("Adding target: documentation")
     13    # Configure the template Doxyfile for our specific project
     14    configure_file(doxyfile.in ${CMAKE_BINARY_DIR}/Doxyfile @ONLY IMMEDIATE)
     15    # Add a custom target to run Doxygen when ever the project is built
     16    add_custom_target (
     17        documentation
     18        COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/Doxyfile
     19        SOURCES ${CMAKE_BINARY_DIR}/Doxyfile)
    2020endif()
Note: See TracChangeset for help on using the changeset viewer.