Skip to content
Snippets Groups Projects
Commit a9a411ad authored by Sreekanth Arikatla's avatar Sreekanth Arikatla
Browse files

REFAC: Move meshIO, geometryMappers out of geometry

parent f8510ad9
No related branches found
No related tags found
No related merge requests found
Showing
with 41 additions and 11 deletions
......@@ -366,6 +366,8 @@ set(${PROJECT_NAME}_INSTALL_FOLDER ${PROJECT_NAME}-${${PROJECT_NAME}_VERSION_MAJ
#--------------------------------------------------------------------------
add_subdirectory(Source/Common)
add_subdirectory(Source/Geometry)
add_subdirectory(Source/MeshIO)
add_subdirectory(Source/GeometryMappers)
add_subdirectory(Source/DataStructures)
add_subdirectory(Source/Constraint)
add_subdirectory(Source/Devices)
......
......@@ -6,6 +6,7 @@ imstk_add_library( Animation
DEPENDS
Common
#Geometry
Materials
SceneElements
)
......
......@@ -5,11 +5,7 @@ include(imstkAddLibrary)
imstk_add_library( Geometry
DEPENDS
Common
glm
Assimp
Materials
VegaFEM::volumetricMesh
${VTK_LIBRARIES}
tbb
)
#-----------------------------------------------------------------------------
......
......@@ -23,12 +23,6 @@
#include "imstkSurfaceMesh.h"
#include "imstkLogger.h"
#pragma warning( push )
#pragma warning( disable : 4458 )
// Vega
#include "volumetricMesh.h"
#pragma warning( pop )
namespace imstk
{
std::shared_ptr<SurfaceMesh>
......
#-----------------------------------------------------------------------------
# Create target
#-----------------------------------------------------------------------------
include(imstkAddLibrary)
imstk_add_library( GeometryMappers
DEPENDS
Geometry
)
#-----------------------------------------------------------------------------
# Testing
#-----------------------------------------------------------------------------
#if( ${PROJECT_NAME}_BUILD_TESTING )
# include(imstkAddTest)
# imstk_add_test( GeometryMappers )
#endif()
#-----------------------------------------------------------------------------
# Create target
#-----------------------------------------------------------------------------
include(imstkAddLibrary)
imstk_add_library( MeshIO
DEPENDS
Common
Geometry
glm
Assimp
VegaFEM::volumetricMesh
${VTK_LIBRARIES}
)
#-----------------------------------------------------------------------------
# Testing
#-----------------------------------------------------------------------------
#if( ${PROJECT_NAME}_BUILD_TESTING )
# include(imstkAddTest)
# imstk_add_test( Geometry )
#endif()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment