MFrontGallery
This document describes how to setup a new project based on the cmake infrastructure of the
MFrontGallery
and MFrontMaterials
projects.
cmake/modules
directoryTo create a material management project derived from
MFrontGallery
, just copy the contents of the
cmake/modules
directory in your local directory.
If you intent to use git
for version control, one easy
way it to add the MFrontGallery
as a remote ressource and
check out the cmake
repository from it as follows:
$ git remote add MFrontGallery https://github.com/thelfer/MFrontGallery
$ git fetch MFrontGallery master
$ git checkout MFrontGallery/master -- cmake
CMakeLists.txt
fileThe next step consist of creating a top level
CMakeLists.txt
file. Here is a minimal example:
project(NewMaterialManagementProject)
set(PACKAGE new-material-management-project)
cmake_minimum_required(VERSION 3.0.2)
include(cmake/modules/mfm.cmake)
# testing
set(CTEST_CONFIGURATION_TYPE "${JOB_BUILD_CONFIGURATION}")
enable_testing()
if(CMAKE_CONFIGURATION_TYPES)
add_custom_target(check COMMAND
${CMAKE_CTEST_COMMAND} -T test -C $<CONFIGURATION>)
else(CMAKE_CONFIGURATION_TYPES)
add_custom_target(check COMMAND
${CMAKE_CTEST_COMMAND} -T test )
endif(CMAKE_CONFIGURATION_TYPES)
# add subdirectories here
add_subdirectory(materials)
Now you are ready to create the subdirectory materials
containing your MFront
files.
The following organization of the MFront
sources is
highly recommended:
materials/
├── material1
│ ├── behaviours
│ ├── models
│ └── properties
├── material2
│ ├── behaviours
│ ├── models
│ └── properties
└── ...
This structure is used to automatically declare MFront
search paths by the mfront_properties_library
and
mfront_behaviours_library
.
cmake/modules
directoryThe lastest version of cmake/modules
directory can be
retrieved as follows:
$ git fetch MFrontGallery master
$ git checkout MFrontGallery/master cmake