-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move EncryptionOperator to plugins dir
- Loading branch information
1 parent
03c71d3
commit 3d75381
Showing
11 changed files
with
74 additions
and
36 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
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
File renamed without changes.
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
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
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,16 @@ | ||
#------------------------------------------------------------------------------# | ||
# Distributed under the OSI-approved Apache License, Version 2.0. See | ||
# accompanying file Copyright.txt for details. | ||
#------------------------------------------------------------------------------# | ||
|
||
if(ADIOS2_HAVE_Sodium) | ||
add_library(EncryptionOperator | ||
EncryptionOperator.cpp | ||
) | ||
target_link_libraries(EncryptionOperator adios2_core sodium) | ||
install(TARGETS EncryptionOperator EXPORT adios2Exports | ||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT adios2_core-runtime | ||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT adios2_core-libraries NAMELINK_COMPONENT adios2_core-development | ||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT adios2_core-development | ||
) | ||
endif() |
File renamed without changes.
File renamed without changes.
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
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,32 @@ | ||
#------------------------------------------------------------------------------# | ||
# Distributed under the OSI-approved Apache License, Version 2.0. See | ||
# accompanying file Copyright.txt for details. | ||
#------------------------------------------------------------------------------# | ||
|
||
cmake_minimum_required(VERSION 3.6) | ||
project(adios_operator_plugin_test CXX) | ||
enable_testing() | ||
|
||
find_package(adios2 REQUIRED) | ||
|
||
option(BUILD_SHARED_LIBS "build shared libs" ON) | ||
|
||
set(ENV{ADIOS2_PLUGIN_PATH} "${adios2_DIR}/../../") | ||
|
||
#---------- Operator Plugin Tests | ||
|
||
# add write test | ||
add_executable(adios_plugin_operator_write_test | ||
../../../examples/plugins/operator/examplePluginOperator_write.cpp | ||
) | ||
target_link_libraries(adios_plugin_operator_write_test adios2::cxx11) | ||
add_test(NAME adios_plugin_operator_write_test COMMAND adios_plugin_operator_write_test) | ||
|
||
# add read test | ||
add_executable(adios_plugin_operator_read_test | ||
../../../examples/plugins/operator/examplePluginOperator_read.cpp | ||
) | ||
target_link_libraries(adios_plugin_operator_read_test adios2::cxx11) | ||
add_test(NAME adios_plugin_operator_read_test COMMAND adios_plugin_operator_read_test) | ||
set_tests_properties(adios_plugin_operator_read_test PROPERTIES | ||
DEPENDS adios_plugin_operator_write_test) |
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