1 Star 0 Fork 0

Rocky / textminer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CMakeLists.txt 397 Bytes
一键复制 编辑 原始数据 按行查看 历史
rockyzhengwu 提交于 2018-07-16 18:26 . tfidf
cmake_minimum_required(VERSION 3.10)
project(textminer)
set(CMAKE_CXX_STANDARD 11)
set(SOURCE_DIR ${PROJECT_SOURCE_DIR}/textminer)
include_directories(
${SOURCE_DIR}
${PROJECT_SOURCE_DIR}/include
)
add_subdirectory(textminer)
add_executable(main main.cpp)
target_link_libraries(main dat util segmenter)
add_executable(tfidf tfidf.cpp)
target_link_libraries(tfidf tools util)
C++
1
https://gitee.com/rockyzheng/textminer.git
git@gitee.com:rockyzheng/textminer.git
rockyzheng
textminer
textminer
master

搜索帮助