Changeset 239 in pacpusframework for trunk/cmake/PacpusDependencies.cmake


Ignore:
Timestamp:
11/29/13 18:39:11 (11 years ago)
Author:
Marek Kurdej
Message:

Added: possibility to use color log output (needs more testing).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/cmake/PacpusDependencies.cmake

    r236 r239  
    102102################################################################################
    103103# Boost
     104set(Boost_USE_STATIC_LIBS       OFF)
     105set(Boost_USE_MULTITHREADED      ON)
     106set(Boost_USE_STATIC_RUNTIME    OFF)
    104107list(APPEND PACPUS_DEFINITIONS " -DBOOST_ALL_DYN_LINK ")
    105 find_package(Boost 1.32.0
     108find_package(Boost 1.54.0
    106109    COMPONENTS
    107         program_options
     110        program_options #1.32.0
    108111)
    109112if(Boost_FOUND)
     
    114117endif()
    115118if(PACPUS_USE_LOG)
    116     list(APPEND PACPUS_DEFINITIONS " -DPACPUS_USE_LOG ")
    117119    find_package(Boost 1.54.0 REQUIRED
    118120        COMPONENTS
    119             log
     121            #filesystem
     122            log # 1.54.0
    120123            log_setup
    121             system
     124            #system
    122125    )
    123126    include_directories(${Boost_INCLUDE_DIRS})
Note: See TracChangeset for help on using the changeset viewer.