-
Notifications
You must be signed in to change notification settings - Fork 6
PS-10068 Adding new KMIP C++ library and making it production ready #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
lukin-oleksiy
wants to merge
11
commits into
Percona-Lab:master
Choose a base branch
from
lukin-oleksiy:PS-10068-full-new-cpp-library
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
bfd0188
PS-10068 Adding new KMIP C++ library and making it production ready
lukin-oleksiy d818498
Fixes of review comments and other fixes
lukin-oleksiy 077fb2c
PS-10068 Adding new KMIP C++ library: docs update
lukin-oleksiy 9ba5afc
PS-10068 Fix PR comment bfd0188
lukin-oleksiy 9916e8c
PS-10068 Fix PR API refinement
lukin-oleksiy 95c6147
PS-10068 Fix PR API refinement
lukin-oleksiy cce9886
PS-10068 Fix PR API refinement
lukin-oleksiy 7dba35a
PS-10068 Fix PR API refinement
lukin-oleksiy 77ea252
PS-10068 Fix PR API refinement
lukin-oleksiy 3ab9736
Fix KMIP locate paging and response batch-count validation
lukin-oleksiy 64d1103
PS-10068 Fix all code and test of KMIP v.2.0
lukin-oleksiy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,13 +1,40 @@ | ||
| cmake_minimum_required(VERSION 3.5.0) | ||
| cmake_minimum_required(VERSION 3.10.0) | ||
|
|
||
| if (POLICY CMP0048) | ||
| cmake_policy(SET CMP0048 NEW) | ||
| endif(POLICY CMP0048) | ||
|
|
||
| project(kmip C CXX) | ||
|
|
||
| enable_testing() | ||
|
|
||
| set(KMIP_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}") | ||
|
|
||
| add_subdirectory(libkmip/src) | ||
| add_subdirectory(kmippp) | ||
| add_subdirectory(kmipcore) | ||
| add_subdirectory(kmipclient) | ||
|
|
||
| find_package(Doxygen) | ||
|
|
||
| option(BUILD_DOCS "Build API documentation with Doxygen" ${DOXYGEN_FOUND}) | ||
|
|
||
| if(BUILD_DOCS) | ||
| if(NOT DOXYGEN_FOUND) | ||
| message(FATAL_ERROR "BUILD_DOCS is ON but Doxygen was not found.") | ||
| endif() | ||
|
|
||
| configure_file(Doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile COPYONLY) | ||
|
|
||
| add_custom_target(doc | ||
| COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile | ||
| WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
| COMMENT "Generating API documentation with Doxygen" | ||
| VERBATIM | ||
| ) | ||
|
|
||
| # Make the 'doc' target depend on your build targets if necessary | ||
| # add_dependencies(doc your_library your_executable) | ||
| else() | ||
| message(STATUS "Doxygen not found or BUILD_DOCS=OFF, skipping documentation generation.") | ||
| endif() | ||
This file contains hidden or 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,36 @@ | ||
| # Project information | ||
| PROJECT_NAME = libkmip | ||
| PROJECT_NUMBER = 0.4.0 | ||
| OUTPUT_DIRECTORY = generated-docs | ||
|
|
||
| # Input settings | ||
| INPUT = . # Scan the current directory for source files | ||
| RECURSIVE = YES | ||
|
|
||
| # Output settings | ||
| GENERATE_LATEX = NO | ||
| GENERATE_MAN = NO | ||
| GENERATE_RTF = NO | ||
| GENERATE_XML = NO | ||
| GENERATE_HTMLHELP = YES | ||
|
|
||
| # UML related settings | ||
| UML_LOOK = YES | ||
| HAVE_DOT = YES | ||
| DOT_PATH = /usr/bin/dot # Adjust this path to where your 'dot' executable is located | ||
| PLANTUML_JAR_PATH = /usr/share/java/plantuml.jar | ||
| PLANTUML_PREPROC = NO | ||
| PLANTUML_INCLUDE_PATH = | ||
| PLANTUML_CONFIG_FILE = | ||
| # Enable class diagram generation | ||
| CLASS_DIAGRAMS = YES | ||
| COLLABORATION_GRAPH = YES | ||
| UML_LIMIT_NUM_FIELDS = 50 | ||
| TEMPLATE_RELATIONS = YES | ||
| MAX_DOT_GRAPH_DEPTH = 0 | ||
| MAX_DOT_GRAPH_NODES = 0 | ||
| HIDE_UNDOC_MEMBERS = NO | ||
| HIDE_VIRTUAL_FUNCTIONS = NO | ||
| SHOW_INCLUDE_FILES = YES | ||
| SHOW_USED_FILES = YES | ||
| SHOW_FILES = YES |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.