Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Nektar
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
84
Issues
84
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
44
Merge Requests
44
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nektar
Nektar
Commits
58fe23de
Commit
58fe23de
authored
Jul 05, 2017
by
Spencer Sherwin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/thridpartyccm' into 'master'
fix missing if in thirdparty ccm See merge request
!802
parents
eb8eab36
e996d11f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
CHANGELOG.md
CHANGELOG.md
+1
-4
cmake/ThirdPartyCCM.cmake
cmake/ThirdPartyCCM.cmake
+4
-0
utilities/NekMesh/CMakeLists.txt
utilities/NekMesh/CMakeLists.txt
+1
-1
No files found.
CHANGELOG.md
View file @
58fe23de
...
...
@@ -7,6 +7,7 @@ v5.0.0
-
Added in sum factorisation version for pyramid expansions and orthogonal
expansion in pyramids (!750)
-
Significant overhaul of CMake infrastructure (!770)
-
Fix ThridpartyCCM options (!802)
**NekMesh**
:
-
Add feature to read basic 2D geo files as CAD (!731)
...
...
@@ -19,10 +20,6 @@ v5.0.0
rather than a vector (!797)
-
Fix inverted triangles and small memory issue in surface meshing (!798)
**Library**
-
Added in sum factorisation version for pyramid expansions and orthogonal
expansion in pyramids (!750)
**FieldConvert**
:
-
Add input module for Semtex field files (!777)
...
...
cmake/ThirdPartyCCM.cmake
View file @
58fe23de
...
...
@@ -8,6 +8,8 @@
OPTION
(
NEKTAR_USE_CCM
"use CCM star i/o"
OFF
)
IF
(
NEKTAR_USE_CCM
)
# First search for system ccmioL installs. Hint /usr/local
FIND_PATH
(
CCMIO_INCLUDE_DIR ccmio.h PATHS /usr/local/include
)
FIND_LIBRARY
(
CCMIO_LIBRARY NAMES
"ccmio"
PATHS /usr/local/lib
)
...
...
@@ -79,3 +81,5 @@ SET(CCMIO_LIBRARIES ccmio adf)
MARK_AS_ADVANCED
(
CCMIO_INCLUDE_DIR
)
MARK_AS_ADVANCED
(
CCMIO_LIBRARY
)
ENDIF
(
NEKTAR_USE_CCM
)
utilities/NekMesh/CMakeLists.txt
View file @
58fe23de
...
...
@@ -59,7 +59,7 @@ ADD_UTILITIES_EXECUTABLE(NekMesh COMPONENT nekmesh
DEPENDS NekMeshUtils FieldUtils
)
IF
(
NEKTAR_USE_CCM
)
TARGET_LINK_LIBRARIES
(
NekMesh
${
CCMIO_LIBRARIES
}
)
TARGET_LINK_LIBRARIES
(
NekMesh
LINK_PRIVATE
${
CCMIO_LIBRARIES
}
)
ENDIF
(
NEKTAR_USE_CCM
)
IF
(
NEKTAR_USE_VTK
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment