Changes between Version 7 and Version 8 of programmersguide/log_support


Ignore:
Timestamp:
12/10/15 14:08:19 (10 years ago)
Author:
raphael.costa
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • programmersguide/log_support

    v7 v8  
    2727== Configuraração do CMakeLists.txt == 
    2828 
     29Procurar pela biblioteca boost log: 
     30 
     31{{{ 
     32find_package(Boost 1.54.0 REQUIRED log log_setup system) 
     33}}} 
     34 
     35Linkar o novo módulo com a biblioteca boost log: 
     36{{{ 
     37 
     38target_link_libraries(terrama2_mod_core terralib_mod_memory 
     39                                        terralib_mod_dataaccess 
     40                                        ${Boost_SYSTEM_LIBRARY} 
     41                                        ${Boost_LOG_SETUP_LIBRARY} 
     42                                        ${Boost_LOG_LIBRARY}) 
     43 
     44}}} 
    2945== Componente no Qt ==