Changeset afd42f1 in nscp


Ignore:
Timestamp:
08/10/11 21:39:27 (23 months ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2
Children:
130777fe
Parents:
54ac968
Message:

removed protobuf/log.proto.h and moved alll includes to target dir instead...

Files:
3 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • CMakeLists.txt

    r54ac968 rafd42f1  
    164164 
    165165 
    166 INCLUDE_DIRECTORIES(${NSCP_INCLUDEDIR}) 
     166INCLUDE_DIRECTORIES(${NSCP_INCLUDEDIR} ${CMAKE_CURRENT_BINARY_DIR}/libs) 
    167167SET(CMAKE_LIBRARY_PATH "${CMAKE_LIBRARY_PATH};${OPENSSL_LIBRARY_DIR};${NSCP_LIBRARYDIR};${BOOST_LIBRARYDIR}") 
    168168 
     
    360360# ${NSCP_INCLUDEDIR}/nscapi/settings_proxy.hpp 
    361361  ${NSCP_INCLUDEDIR}/nscapi/macros.hpp 
     362  ${NSCP_INCLUDEDIR}/nscapi/functions.hpp 
    362363) 
    363364 
     
    380381  ${Boost_THREAD_LIBRARY} 
    381382  ${Boost_SYSTEM_LIBRARY} 
     383  ${Boost_REGEX_LIBRARY} 
     384  ${Boost_FILESYSTEM_LIBRARY} 
    382385  ${EXTRA_LIBS} 
    383386  ${PROTOBUF_LIBRARY} 
  • build/cmake/NSCPPBuffer.cmake

    r04ef932 rafd42f1  
    9090     
    9191    SET(PB_TARGET_INCLUDE ${INCL}) 
    92     configure_file(${ABS_FIL}.h.in ${ABS_FIL}.h) 
     92    #configure_file(${ABS_FIL}.h.in ${ABS_FIL}.h) 
    9393 
    9494      ADD_CUSTOM_COMMAND( 
  • include/nscapi/functions.hpp

    r04ef932 rafd42f1  
    3636#include <nscapi/settings_proxy.hpp> 
    3737 
    38 #include "../libs/protobuf/plugin.proto.h" 
    39 #include "../libs/protobuf/log.proto.h" 
     38#include <protobuf/plugin.pb.h> 
     39#include <protobuf/log.pb.h> 
    4040 
    4141using namespace nscp::helpers; 
  • include/nscapi/nscapi_core_wrapper.cpp

    r04ef932 rafd42f1  
    3131#include <settings/macros.h> 
    3232 
    33 #include "../libs/protobuf/plugin.proto.h" 
    34 #include "../libs/protobuf/log.proto.h" 
     33#include <protobuf/plugin.pb.h> 
     34#include <protobuf/log.pb.h> 
    3535 
    3636using namespace nscp::helpers; 
  • include/nscapi/nscapi_plugin_wrapper.cpp

    r7ec3dd1 rafd42f1  
    3434#include <boost/tokenizer.hpp> 
    3535 
    36 #include "../libs/protobuf/plugin.proto.h" 
    37 #include "../libs/protobuf/log.proto.h" 
     36#include <protobuf/plugin.pb.h> 
     37#include <protobuf/log.pb.h> 
    3838 
    3939using namespace nscp::helpers; 
  • service/NSClient++.cpp

    r04ef932 rafd42f1  
    4545#include "../version.hpp" 
    4646 
    47 #include "../libs/protobuf/plugin.proto.h" 
     47#include "../libs/protobuf/plugin.pb.h" 
    4848 
    4949#ifdef USE_BREAKPAD 
  • service/logger.hpp

    r7ec3dd1 rafd42f1  
    66#include <boost/thread/mutex.hpp> 
    77 
    8 #include "../libs/protobuf/log.proto.h" 
     8#include <protobuf/log.pb.h> 
    99 
    1010#include <strEx.h> 
Note: See TracChangeset for help on using the changeset viewer.