update logger.hpp

This commit is contained in:
wyy 2013-11-04 04:10:16 -08:00
parent 0aa0a4f035
commit b0c2bf6490
4 changed files with 1 additions and 5 deletions

View File

@ -1,3 +1,2 @@
PROJECT(CPPJIEBA)
ADD_SUBDIRECTORY(src)
ADD_SUBDIRECTORY(src/Husky/Limonp)

View File

@ -1,8 +1,6 @@
SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/lib)
INCLUDE_DIRECTORIES(./limonp ./husky)
SET(LIBCPPJIEBA_SRC HMMSegment.cpp MixSegment.cpp MPSegment.cpp Trie.cpp)
ADD_LIBRARY(cppjieba STATIC ${LIBCPPJIEBA_SRC})
ADD_EXECUTABLE(segment segment.cpp)

View File

@ -6,4 +6,3 @@ ADD_LIBRARY(husky STATIC ${LIBHUSKY_SRC})
INSTALL(TARGETS husky ARCHIVE DESTINATION lib/CppJieba/Husky)
INSTALL(FILES Daemon.h globals.h HttpReqInfo.hpp ServerFrame.h ThreadManager.hpp DESTINATION include/CppJieba/Husky)

View File

@ -3,7 +3,7 @@
#include <string>
#include <ctype.h>
#include <string.h>
#include "Husky/Limonp/ArgvContext.hpp"
#include "Limonp/ArgvContext.hpp"
#include "Husky/Daemon.h"
#include "Husky/ServerFrame.h"
#include "MPSegment.h"