Fix to allow multistructure images in Java/C# and use MCS for c# wrapper (#2898)

This commit is contained in:
jones-gareth
2020-01-23 01:03:09 -07:00
committed by Greg Landrum
parent 4d028b2aec
commit eb289cd13c
2 changed files with 5 additions and 4 deletions

View File

@@ -2,12 +2,12 @@ project (GraphMolCSharp)
include_directories( ${RDKit_ExternalDir} )
# find the gmcs executables on non-windows systems:
# find the mcs executables on non-windows systems:
if(NOT WIN32)
find_program(GMCS_EXE gmcs)
find_program(GMCS_EXE mcs)
if (NOT GMCS_EXE)
MESSAGE ("gmcs (executable) is not found. Please add it to PATH and rerun cmake.")
MESSAGE(FATAL_ERROR "Cannot find required executable gmcs")
MESSAGE ("mcs (executable) is not found. Please add it to PATH and rerun cmake.")
MESSAGE(FATAL_ERROR "Cannot find required executable mcs")
endif (NOT GMCS_EXE)
endif(NOT WIN32)