Skip to content

Commit

Permalink
operators: fix module library
Browse files Browse the repository at this point in the history
  • Loading branch information
vicentebolea committed Aug 22, 2023
1 parent 7283f5e commit 26b0171
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CTestCustom.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION
"Warning #20208-D: '.*' is treated as '.*' in device code"
"Warning: '.*' is treated as '.*' in device code"
".*was specified as both a system and non-system include directory.*"
"Wunused-command-line-argument"
)
list(APPEND CTEST_CUSTOM_COVERAGE_EXCLUDE
".*/thirdparty/.*"
Expand Down
2 changes: 1 addition & 1 deletion plugins/engines/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#------------------------------------------------------------------------------#

if(ADIOS2_HAVE_Catalyst)
add_library(ParaViewADIOSInSituEngine
add_library(ParaViewADIOSInSituEngine MODULE
ParaViewFidesEngine.cpp)
target_link_libraries(ParaViewADIOSInSituEngine
PUBLIC
Expand Down
2 changes: 1 addition & 1 deletion plugins/operators/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#------------------------------------------------------------------------------#

if(ADIOS2_HAVE_Sodium)
add_library(EncryptionOperator
add_library(EncryptionOperator MODULE
EncryptionOperator.cpp
)
target_link_libraries(EncryptionOperator adios2_core sodium)
Expand Down

0 comments on commit 26b0171

Please sign in to comment.