Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 552 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 552 Bytes

CommonUtility


Overview
Common utility functions for VTK projects.


Requirements
VTK 9.2+


Usage
Include this project as a submodule for your project. Refer to git submodule doc for more details.
Once you added the submodule into your project, in CMakeLists.txt of your project, do

# Add the submodule as a subdirectory
add_subdirectory(CommonUtility)

#link to submodule
target_link_libraries(${PROJECT_NAME}
        PRIVATE
        CommonUtility
)