From d94bbc5866e7c1e0f1668766b5594251d10ae20e Mon Sep 17 00:00:00 2001 From: Adam Radziszewski <adam.radziszewski@pwr.wroc.pl> Date: Wed, 3 Oct 2012 12:32:22 +0200 Subject: [PATCH] move corpus2get.cpp out of the main build system as it generates warnings and is not flexible enough to replace Python corpus-get --- corpus2tools/CMakeLists.txt | 4 +--- {corpus2tools => utils}/corpus2get.cpp | 0 2 files changed, 1 insertion(+), 3 deletions(-) rename {corpus2tools => utils}/corpus2get.cpp (100%) diff --git a/corpus2tools/CMakeLists.txt b/corpus2tools/CMakeLists.txt index 968efbc..51d1236 100644 --- a/corpus2tools/CMakeLists.txt +++ b/corpus2tools/CMakeLists.txt @@ -18,11 +18,9 @@ link_directories(${Boost_LIBRARY_DIRS}) link_directories(${ICU_LIBRARY_DIRS}) add_executable( tagset-tool tagset-tool.cpp ) -add_executable( corpus2get corpus2get.cpp ) target_link_libraries ( tagset-tool corpus2 pwrutils ${Boost_LIBRARIES} ${LIBS}) -target_link_libraries ( corpus2get corpus2 pwrutils ${Boost_LIBRARIES} ${LIBS}) - install(TARGETS tagset-tool corpus2get + install(TARGETS tagset-tool RUNTIME DESTINATION bin) install(FILES corpus-get corpus-merge DESTINATION bin diff --git a/corpus2tools/corpus2get.cpp b/utils/corpus2get.cpp similarity index 100% rename from corpus2tools/corpus2get.cpp rename to utils/corpus2get.cpp -- GitLab