Skip to content

Commit

Permalink
Merge branch 'master' into feature/GRIDEDIT-953_spline_to_curvilinear
Browse files Browse the repository at this point in the history
  • Loading branch information
BillSenior committed Jun 17, 2024
2 parents 087591e + 1a696ac commit fb837b3
Show file tree
Hide file tree
Showing 48 changed files with 2,599 additions and 316 deletions.
1 change: 1 addition & 0 deletions .github/workflows/doxy-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
jobs:
check:
runs-on: ubuntu-20.04
name: Doxygen Deploy
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/doxy-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
jobs:
check:
runs-on: ubuntu-20.04
name: Doxygen Check
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
jobs:
check:
runs-on: ubuntu-20.04
name: Codespell Check
steps:
- uses: actions/checkout@v2
- uses: codespell-project/actions-codespell@master
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/style-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
jobs:
check:
runs-on: ubuntu-20.04
name: Clang Format Check
steps:
- uses: actions/checkout@v2
- name: Download a recent, static build of clang-format
Expand Down
9 changes: 2 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
cmake_minimum_required(VERSION 3.23)

# get version from latest git tag (stored in VERSION_STRING_BASE)
include(cmake/get_version_from_git.cmake)
get_version_from_git(
LOG OFF
TIMESTAMP "%Y%m%d%H%M%S"
)
set(MESHKERNEL_VERSION 4.2.0)

project(
MeshKernel
VERSION ${VERSION_STRING_BASE}
VERSION ${MESHKERNEL_VERSION}
DESCRIPTION "Library for creating and editing meshes."
LANGUAGES CXX C
)
Expand Down
167 changes: 0 additions & 167 deletions cmake/get_version_from_git.cmake

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 4 additions & 0 deletions libs/MeshKernel/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ set(CURVILINEAR_UNDO_INC_DIR ${CURVILINEAR_GRID_INC_DIR}/UndoActions)
set(
SRC_LIST
${SRC_DIR}/AveragingInterpolation.cpp
${SRC_DIR}/CasulliDeRefinement.cpp
${SRC_DIR}/CasulliRefinement.cpp
${SRC_DIR}/ConnectMeshes.cpp
${SRC_DIR}/Contacts.cpp
Expand Down Expand Up @@ -72,6 +73,7 @@ set(
${UNDO_SRC_DIR}/CompoundUndoAction.cpp
${UNDO_SRC_DIR}/DeleteEdgeAction.cpp
${UNDO_SRC_DIR}/DeleteNodeAction.cpp
${UNDO_SRC_DIR}/FullUnstructuredGridUndo.cpp
${UNDO_SRC_DIR}/MeshConversionAction.cpp
${UNDO_SRC_DIR}/NodeTranslationAction.cpp
${UNDO_SRC_DIR}/ResetEdgeAction.cpp
Expand Down Expand Up @@ -136,6 +138,7 @@ set(
${DOMAIN_INC_DIR}/AveragingInterpolation.hpp
${DOMAIN_INC_DIR}/BilinearInterpolationOnGriddedSamples.hpp
${DOMAIN_INC_DIR}/BoundingBox.hpp
${DOMAIN_INC_DIR}/CasulliDeRefinement.hpp
${DOMAIN_INC_DIR}/CasulliRefinement.hpp
${DOMAIN_INC_DIR}/ConnectMeshes.hpp
${DOMAIN_INC_DIR}/Constants.hpp
Expand Down Expand Up @@ -186,6 +189,7 @@ set(
${UNDO_INC_DIR}/BaseMeshUndoAction.hpp
${UNDO_INC_DIR}/DeleteEdgeAction.hpp
${UNDO_INC_DIR}/DeleteNodeAction.hpp
${UNDO_INC_DIR}/FullUnstructuredGridUndo.hpp
${UNDO_INC_DIR}/MeshConversionAction.hpp
${UNDO_INC_DIR}/NodeTranslationAction.hpp
${UNDO_INC_DIR}/ResetEdgeAction.hpp
Expand Down
Loading

0 comments on commit fb837b3

Please sign in to comment.