Changeset 228 in pacpusframework


Ignore:
Timestamp:
11/26/13 17:55:18 (11 years ago)
Author:
Marek Kurdej
Message:

Minor: added (commented) manifest SxS.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/cmake/PacpusUtilities.cmake

    r191 r228  
    307307        PROPERTIES DEBUG_POSTFIX "_d"
    308308    )
     309        # Add manifest to the target (Windows SxS)
     310        # TODO: do the same for executable (change #2 to #1)
     311        #if(MSVC)
     312        #       pacpus_info("\${CMAKE_CURRENT_SOURCE_DIR}/\${target}.manifest = ${CMAKE_CURRENT_SOURCE_DIR}/${target}.manifest")
     313        #       if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}\\${target}.manifest")
     314        #               pacpus_info("Exists: ${CMAKE_CURRENT_SOURCE_DIR}/${target}.manifest")
     315        #               add_custom_command(
     316        #                       TARGET ${target}
     317        #                       POST_BUILD
     318        #                       COMMAND "mt.exe" -manifest \"${CMAKE_CURRENT_SOURCE_DIR}\\${target}.manifest\" -outputresource:\"$(TargetDir)\\$(TargetFileName)\"\;\#2
     319        #                       COMMENT "Adding custom manifest containing MSVCRT80 dependency..."
     320        #               )
     321        #       endif()
     322        #endif()
    309323endfunction()
    310324
  • trunk/src/PacpusLib/Log.cpp

    r225 r228  
    5959}
    6060
    61 void LogConfigurator::configureLoggerWithFile(const char * logFileName)
     61void LogConfigurator::configureLoggerWithFile(const char* logFileName)
    6262{
    6363    using namespace boost;
Note: See TracChangeset for help on using the changeset viewer.