-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add label shortcuts and other bindings
- Loading branch information
1 parent
016dabb
commit 31f2cee
Showing
38 changed files
with
1,349 additions
and
593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
cmake_minimum_required(VERSION 3.1.0) | ||
|
||
project(labelbuddy VERSION 0.0.1 LANGUAGES CXX) | ||
project(labelbuddy VERSION 0.0.3 LANGUAGES CXX) | ||
|
||
set(CMAKE_CXX_STANDARD 11) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
||
# if (MSVC) | ||
# add_compile_options(/W4 /WX) | ||
# else() | ||
# add_compile_options(-Wall -Wextra -pedantic -Werror) | ||
# endif() | ||
|
||
set(CMAKE_AUTOMOC ON) | ||
set(CMAKE_AUTORCC ON) | ||
set(CMAKE_AUTOUIC ON) | ||
|
@@ -39,13 +45,19 @@ set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -s") | |
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -s") | ||
|
||
set(CPACK_PACKAGE_NAME "labelbuddy") | ||
set(CPACK_PACKAGE_VERSION "0.0.1") | ||
set(CPACK_PACKAGE_VERSION "0.0.3") | ||
set(CPACK_PACKAGE_VERSION_MAJOR 0) | ||
set(CPACK_PACKAGE_VERSION_MINOR 0) | ||
set(CPACK_PACKAGE_VERSION_PATCH 1) | ||
set(CPACK_PACKAGE_VERSION_PATCH 3) | ||
set(CPACK_PACKAGE_CHECKSUM "MD5") | ||
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "gui tool for annotating documents") | ||
set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/docs/short-readme.txt") | ||
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE "https://github.com/jeromedockes/labelbuddy") | ||
if(CMAKE_VERSION VERSION_LESS "3.14.0") | ||
file(READ "${CMAKE_SOURCE_DIR}/docs/Description" DESCR) | ||
string(REGEX REPLACE "\n$" "" CPACK_DEBIAN_PACKAGE_DESCRIPTION "${DESCR}") | ||
else() | ||
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "GUI tool for annotating documents") | ||
set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/docs/extended-description") | ||
endif() | ||
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/LICENSE.txt") | ||
|
||
set(CPACK_SOURCE_GENERATOR "TGZ") | ||
|
@@ -86,7 +98,7 @@ set(CPACK_SOURCE_IGNORE_FILES | |
|
||
set(CPACK_GENERATOR "DEB") | ||
set(CPACK_DEBIAN_FILE_NAME "DEB-DEFAULT") | ||
set(CPACK_DEBIAN_PACKAGE_VERSION "0.0.1-1") | ||
set(CPACK_DEBIAN_PACKAGE_VERSION "0.0.3-1") | ||
set(CPACK_DEBIAN_PACKAGE_SECTION "text") | ||
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Jerome Dockes <[email protected]>") | ||
set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.0.1 | ||
0.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
GUI tool for annotating documents | ||
This is an application for annotating parts of documents with labels. | ||
labelbuddy can be used for Part Of Speech tagging, | ||
Named Entity Recognition, | ||
sentiment analysis and document classification, etc. | ||
It depends on Qt5. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.