Add muparser and CMake handling
commitb06ac54659006d4071564c18f7abcc17d359e9c4
authorPaul Bauer <paul.bauer.q@gmail.com>
Mon, 5 Oct 2020 07:48:03 +0000 (5 09:48 +0200)
committerArtem Zhmurov <zhmurov@gmail.com>
Mon, 5 Oct 2020 14:34:57 +0000 (5 14:34 +0000)
tree2f24f6490427c5ab635199cab3ef21798fc8ba1d
parentef43c94007163893a47f9522bf2d979e25a4e31b
Add muparser and CMake handling

Adds handling both for linking external muparser library and building
from source if it is not found.

Refs #3515

Change-Id: I09f725ea634d21e3a7d217cf99d28adb71d54473
30 files changed:
CMakeLists.txt
COPYING
cmake/FindMuparser.cmake [new file with mode: 0644]
cmake/gmxManageMuparser.cmake [new file with mode: 0644]
docs/release-notes/2021/major/portability.rst
src/config.h.cmakein
src/external/muparser/README [new file with mode: 0644]
src/external/muparser/muParser.cpp [new file with mode: 0644]
src/external/muparser/muParser.h [new file with mode: 0644]
src/external/muparser/muParserBase.cpp [new file with mode: 0644]
src/external/muparser/muParserBase.h [new file with mode: 0644]
src/external/muparser/muParserBytecode.cpp [new file with mode: 0644]
src/external/muparser/muParserBytecode.h [new file with mode: 0644]
src/external/muparser/muParserCallback.cpp [new file with mode: 0644]
src/external/muparser/muParserCallback.h [new file with mode: 0644]
src/external/muparser/muParserDLL.cpp [new file with mode: 0644]
src/external/muparser/muParserDLL.h [new file with mode: 0644]
src/external/muparser/muParserDef.h [new file with mode: 0644]
src/external/muparser/muParserError.cpp [new file with mode: 0644]
src/external/muparser/muParserError.h [new file with mode: 0644]
src/external/muparser/muParserFixes.h [new file with mode: 0644]
src/external/muparser/muParserInt.cpp [new file with mode: 0644]
src/external/muparser/muParserInt.h [new file with mode: 0644]
src/external/muparser/muParserTemplateMagic.h [new file with mode: 0644]
src/external/muparser/muParserTest.cpp [new file with mode: 0644]
src/external/muparser/muParserTest.h [new file with mode: 0644]
src/external/muparser/muParserToken.h [new file with mode: 0644]
src/external/muparser/muParserTokenReader.cpp [new file with mode: 0644]
src/external/muparser/muParserTokenReader.h [new file with mode: 0644]
src/gromacs/CMakeLists.txt