Changeset 349 in pacpusframework for trunk


Ignore:
Timestamp:
09/23/15 21:35:59 (9 years ago)
Author:
DHERBOMEZ Gérald
Message:

build of the trunk (release 0.2.x) under Linux Mint 17.2

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/Pacpus/kernel/ComponentBase.h

    r312 r349  
    101101    /// @return Value of the current state.
    102102    COMPONENT_STATE getState();
     103    COMPONENT_STATE state();
    103104
    104105    /// Checks whether the component if configurer or not.
     
    109110    /// @return Name of the component.
    110111    QString getName() const;
     112    QString name() const;
    111113   
    112114    /// @returns @b true if the component has been started and is active (working)
  • trunk/scripts/build-linux.sh

    r348 r349  
    3535        -DPACPUS_USE_LOG=TRUE -DCMAKE_BUILD_TYPE=Release \
    3636        -DPACPUS_INSTALL_WITH_VERSION_NUMBER=TRUE
    37     make
     37    make -j4
    3838    sudo make install
    3939    cmake .. -DPACPUS_INSTALL_DIR=$1 -DPACPUS_INSTALL_3RD=TRUE \
    4040        -DPACPUS_USE_LOG=TRUE -DCMAKE_BUILD_TYPE=Debug
    4141        -DPACPUS_INSTALL_WITH_VERSION_NUMBER=TRUE \
    42     make
     42    make -j4
    4343    sudo make install
    4444    echo "Build finished"
  • trunk/src/FileLib/test/CMakeLists.txt

    r314 r349  
    4444)
    4545
    46 if(WIN32)
    47     list(APPEND LIBS
    48         optimized FileLib debug FileLib_d
    49         optimized PacpusLib debug PacpusLib_d
    50     )
    51 endif()
     46list(APPEND LIBS
     47    optimized FileLib debug FileLib_d
     48    optimized PacpusLib debug PacpusLib_d
     49)
    5250
    5351# LINK
  • trunk/src/PacpusLib/ColorSeverityFormatter.hpp

    r303 r349  
    303303    }
    304304
    305     BOOST_DELETED_FUNCTION(FormatSeverityWithColorsTerminal())
     305    //BOOST_DELETED_FUNCTION(FormatSeverityWithColorsTerminal())
     306    FormatSeverityWithColorsTerminal() = delete;
    306307};
    307308
  • trunk/src/PacpusLib/ComponentBase.cpp

    r312 r349  
    207207}
    208208
     209// FIXME: this should be const.
     210ComponentBase::COMPONENT_STATE ComponentBase::state()
     211{
     212    return getState();
     213}
     214
     215
    209216ComponentBase::COMPONENT_CONFIGURATION ComponentBase::configurationState() const
    210217{
     
    225232{
    226233    return m_componentName;
     234}
     235
     236QString ComponentBase::name() const
     237{
     238    return getName();
    227239}
    228240
Note: See TracChangeset for help on using the changeset viewer.