adding Husky

This commit is contained in:
wyy 2013-11-03 22:07:26 -08:00
parent 01b225dec8
commit dd55d9c8c4
4 changed files with 9 additions and 5 deletions

View File

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

View File

@ -20,3 +20,6 @@ INSTALL(TARGETS segment RUNTIME DESTINATION bin/CppJieba)
INSTALL(TARGETS server RUNTIME DESTINATION bin/CppJieba)
INSTALL(FILES ChineseFilter.hpp HMMSegment.h MPSegment.h structs.h Trie.h globals.h ISegment.hpp MixSegment.h SegmentBase.hpp TransCode.hpp DESTINATION include/CppJieba)
ADD_SUBDIRECTORY(Husky)
ADD_SUBDIRECTORY(Limonp)

View File

@ -6,3 +6,5 @@ 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)
ADD_SUBDIRECTORY(Limonp)

View File

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