mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
Adds SWIGWIN definition in WIN32 if not 32bit (#1158)
This commit is contained in:
committed by
Greg Landrum
parent
f003eb6683
commit
88637a59d7
@@ -32,7 +32,11 @@ endif(APPLE)
|
||||
if(CMAKE_SIZEOF_VOID_P MATCHES 4)
|
||||
SET(CMAKE_SWIG_FLAGS -namespace "GraphMolWrap")
|
||||
else()
|
||||
SET(CMAKE_SWIG_FLAGS -namespace "GraphMolWrap" "-DSWIGWORDSIZE64")
|
||||
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 )
|
||||
|
||||
|
||||
Reference in New Issue
Block a user