mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
Fix to allow multistructure images in Java/C# and use MCS for c# wrapper (#2898)
This commit is contained in:
committed by
Greg Landrum
parent
4d028b2aec
commit
eb289cd13c
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user