mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
93 lines
2.9 KiB
CMake
93 lines
2.9 KiB
CMake
project (GraphMolCSharp)
|
|
|
|
include_directories( ${RDKit_ExternalDir} )
|
|
|
|
# find the gmcs executables on non-windows systems:
|
|
if(NOT WIN32)
|
|
find_program(GMCS_EXE gmcs)
|
|
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")
|
|
endif (NOT GMCS_EXE)
|
|
endif(NOT WIN32)
|
|
|
|
|
|
SET_SOURCE_FILES_PROPERTIES(GraphMolCSharp.i PROPERTIES CPLUSPLUS ON )
|
|
|
|
# Setup a few variables for environment-specific things
|
|
if(WIN32)
|
|
ADD_DEFINITIONS("/W3 /wd4716 /bigobj")
|
|
SET(PATH_SEP ";")
|
|
SET(COPY_CMD xcopy ${COPY_SOURCE} ${COPY_DEST} /Y /I)
|
|
else()
|
|
SET(PATH_SEP ":")
|
|
SET(COPY_CMD cp -p ${COPY_SOURCE} ${COPY_DEST})
|
|
endif()
|
|
|
|
# Coax SWIG into playing nicely with Apple environments
|
|
if(APPLE)
|
|
SET(CMAKE_SIZEOF_VOID_P 4)
|
|
endif(APPLE)
|
|
|
|
if(CMAKE_SIZEOF_VOID_P MATCHES 4)
|
|
SET(CMAKE_SWIG_FLAGS -namespace "GraphMolWrap")
|
|
else()
|
|
if (WIN32)
|
|
SET(CMAKE_SWIG_FLAGS -namespace "GraphMolWrap" "-DSWIGWORDSIZE64" "-DSWIGWIN")
|
|
else()
|
|
SET(CMAKE_SWIG_FLAGS -namespace "GraphMolWrap" "-DSWIGWORDSIZE64")
|
|
endif()
|
|
endif()
|
|
SET(CMAKE_SWIG_OUTDIR ${CMAKE_CURRENT_SOURCE_DIR}/swig_csharp )
|
|
|
|
if(RDK_BUILD_INCHI_SUPPORT)
|
|
SET(CMAKE_SWIG_FLAGS "-DBUILD_INCHI_SUPPORT" ${CMAKE_SWIG_FLAGS} )
|
|
endif()
|
|
if(RDK_BUILD_AVALON_SUPPORT)
|
|
SET(CMAKE_SWIG_FLAGS "-DBUILD_AVALON_SUPPORT" ${CMAKE_SWIG_FLAGS} )
|
|
endif()
|
|
|
|
FILE(GLOB SWIG_SRC_FILES "${CMAKE_CURRENT_SOURCE_DIR}/../*.i")
|
|
|
|
# we added all source files, now remove the ones that we're not supporting in this build:
|
|
if(NOT RDK_BUILD_AVALON_SUPPORT)
|
|
LIST(REMOVE_ITEM SWIG_SRC_FILES "${CMAKE_CURRENT_SOURCE_DIR}/../AvalonLib.i")
|
|
endif()
|
|
|
|
if(NOT RDK_BUILD_INCHI_SUPPORT)
|
|
LIST(REMOVE_ITEM SWIG_SRC_FILES "${CMAKE_CURRENT_SOURCE_DIR}/../Inchi.i")
|
|
endif()
|
|
|
|
SET(SWIG_MODULE_RDKFuncs_EXTRA_DEPS ${SWIG_SRC_FILES} )
|
|
|
|
SWIG_ADD_MODULE(RDKFuncs "CSharp" GraphMolCSharp.i )
|
|
|
|
# it doesnt seem like the threading libs should need to be here, but
|
|
# as of Oct 2012 using boost 1.51 under at least ubuntu 12.04 we get a
|
|
# link error if they aren't there.
|
|
SWIG_LINK_LIBRARIES(RDKFuncs ${RDKit_Wrapper_Libs}
|
|
${RDKit_THREAD_LIBS} )
|
|
|
|
INSTALL(TARGETS RDKFuncs
|
|
DESTINATION ${CMAKE_CURRENT_SOURCE_DIR} )
|
|
|
|
|
|
if(NOT WIN32)
|
|
# code adapted from the wrapper code for
|
|
# GDCM: http://gdcm.svn.sf.net/viewvc/gdcm/trunk/Wrapping/Java/CMakeLists.txt?view=markup
|
|
ADD_CUSTOM_COMMAND(
|
|
OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/RDKit2DotNet.dll
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E make_directory swig_csharp
|
|
|
|
## 1. run this custom command only after swig has been run.
|
|
COMMAND ${GMCS_EXE} -out:RDKit2DotNet.dll -t:library "swig_csharp/*.cs"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
DEPENDS "${swig_generated_file_fullname}"
|
|
)
|
|
ADD_CUSTOM_TARGET(RDKFuncsDLL ALL
|
|
DEPENDS RDKFuncs ${CMAKE_CURRENT_SOURCE_DIR}/RDKit2DotNet.dll
|
|
COMMENT "building mono dll"
|
|
)
|
|
endif(NOT WIN32)
|