WIP: VisIt reader plugin
1 unresolved thread
1 unresolved thread
It will allow to create a visit bridge plugin for custom reader.
Example of CMakeLists.txt:
set(sources
myVisItReader.cpp
)
set(_VisItReader_output_dir
"${CMAKE_CURRENT_BINARY_DIR}")
# used by add_visit_reader to generate vtk reader file.
set(_visit_reader_module vtkVisItReaders)
set(_visit_reader_module_export VTKVISITREADERS)
add_visit_reader(MyReader "1.0"
VISIT_READER_NAME "avtMyFileFormat"
VISIT_READER_TYPE "STMD"
SERVER_SOURCES ${sources}
)
get_property(visit_server_sources GLOBAL PROPERTY _visit_server_sources)
get_property(visit_db_sources GLOBAL PROPERTY _visit_db_sources)
get_property(visit_db_headers GLOBAL PROPERTY _visit_db_headers)
get_property(visit_include_dirs GLOBAL PROPERTY _visit_db_include_dirs)
vtk_module_add_module(vtkVisItReaders
SOURCES ${visit_server_sources} ${visit_db_sources}
HEADERS ${visit_db_headers}
PRIVATE_HEADERS ${private_headers})
Edited by Nicolas Vuaille
Merge request reports
Activity
Filter activity
Errors:
- commit d6224903 references the commit 18dceccd7ff6a7953352152eb2fd2b127cd5dec7 at
Utilities/VisItBridge
, but it is not available on the tracked branchmaster
; please make the commit available from themaster
branch first.
Warnings:
- please consider adding a changelog entry in a file ending with
.md
inDocumentation/release/dev
.
The warnings do not need to be fixed, but it is recommended to do so.
Please rewrite commits to fix the errors listed above (adding fixup commits will not resolve the errors) and force-push the branch again to update the merge request.
Some messages may be temporary; please trigger the checks again if they have been resolved.
- commit d6224903 references the commit 18dceccd7ff6a7953352152eb2fd2b127cd5dec7 at
mentioned in merge request visitbridge!83 (closed)
assigned to @nicolas.vuaille
mentioned in merge request third-party/visit!19
mentioned in issue #20435
Please register or sign in to reply