mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
22 lines
732 B
CMake
22 lines
732 B
CMake
# -----------------------------------------------------------------------------
|
|
# Set of basic source files (not the OpenGL or GLSL ones)
|
|
# -----------------------------------------------------------------------------
|
|
set(KIT_SRCS
|
|
vtkCellPointsFilter.cxx
|
|
vtk1DLookupTableTransferFunction.cxx
|
|
vtk1DTransferFunction.cxx
|
|
vtk1DTransferFunctionChooser.cxx
|
|
vtk1DTransferFunctionFilter.cxx
|
|
vtk1DGaussianTransferFunction.cxx
|
|
)
|
|
|
|
set_source_files_properties(
|
|
vtk1DTransferFunction.cxx
|
|
ABSTRACT
|
|
)
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Create the library
|
|
# -----------------------------------------------------------------------------
|
|
vtk_module_library(${vtk-module} ${KIT_SRCS})
|