Skip to content

Commit

Permalink
adjusted folder assignment for utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
rinkk committed Feb 12, 2016
1 parent 944beb0 commit cc1e38a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
19 changes: 10 additions & 9 deletions Applications/Utils/MeshEdit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -92,24 +92,25 @@ set_target_properties(ExtractSurface PROPERTIES FOLDER Utilities)
### Installation ###
####################
install(TARGETS
removeMeshElements
NodeReordering
MoveMesh
AddTopLayer
appendLinesAlongPolyline
editMaterialID
checkMesh
reviseMesh
ResetPropertiesInPolygonalRegion
AddTopLayer
CreateBoundaryConditionsAlongPolylines
queryMesh
createLayeredMeshFromRasters
editMaterialID
ExtractSurface
MoveMesh
NodeReordering
removeMeshElements
ResetPropertiesInPolygonalRegion
reviseMesh
queryMesh
RUNTIME DESTINATION bin COMPONENT Utilities
)
if(QT4_FOUND)
install(TARGETS
moveMeshNodes
MapGeometryToMeshSurface
moveMeshNodes
RUNTIME DESTINATION bin
COMPONENT Utilities
)
Expand Down
2 changes: 1 addition & 1 deletion Applications/Utils/MeshGeoTools/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ADD_EXECUTABLE( ComputeSurfaceNodeIDsInPolygonalRegion ComputeSurfaceNodeIDsInPolygonalRegion.cpp )
SET_TARGET_PROPERTIES( ComputeSurfaceNodeIDsInPolygonalRegion PROPERTIES FOLDER Utils)
SET_TARGET_PROPERTIES( ComputeSurfaceNodeIDsInPolygonalRegion PROPERTIES FOLDER Utilities)
TARGET_LINK_LIBRARIES( ComputeSurfaceNodeIDsInPolygonalRegion
MeshLib
FileIO
Expand Down
2 changes: 1 addition & 1 deletion Applications/Utils/ModelPreparation/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
add_executable(ComputeNodeAreasFromSurfaceMesh ComputeNodeAreasFromSurfaceMesh.cpp)
set_target_properties(ComputeNodeAreasFromSurfaceMesh PROPERTIES FOLDER Utils)
set_target_properties(ComputeNodeAreasFromSurfaceMesh PROPERTIES FOLDER Utilities)
target_link_libraries(ComputeNodeAreasFromSurfaceMesh
FileIO
MeshLib
Expand Down
4 changes: 1 addition & 3 deletions Applications/Utils/SimpleMeshCreation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@ include_directories(
)

if(OGS_BUILD_GUI)

add_executable(createMeshElemPropertiesFromASCRaster createMeshElemPropertiesFromASCRaster.cpp)
set_target_properties(createMeshElemPropertiesFromASCRaster PROPERTIES FOLDER Utils)
set_target_properties(createMeshElemPropertiesFromASCRaster PROPERTIES FOLDER Utilities)
target_link_libraries(createMeshElemPropertiesFromASCRaster FileIO)
ADD_VTK_DEPENDENCY(createMeshElemPropertiesFromASCRaster)

endif() # OGS_BUILD_GUI (VtkVis-target is existing)


Expand Down

0 comments on commit cc1e38a

Please sign in to comment.