diff options
author | Jose <jose@zeroc.com> | 2019-07-26 09:17:37 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-07-26 09:17:37 +0200 |
commit | 2eedbb4c0441efea5cb2de950976a985f87dda10 (patch) | |
tree | 6a972036288563e2d74f3efe8d47d912a022635a | |
parent | Fixes for loading C++ plug-ins in IcePy and IceRuby - Close #461 (diff) | |
download | ice-2eedbb4c0441efea5cb2de950976a985f87dda10.tar.bz2 ice-2eedbb4c0441efea5cb2de950976a985f87dda10.tar.xz ice-2eedbb4c0441efea5cb2de950976a985f87dda10.zip |
Fix for python builds
-rw-r--r-- | python/config/Make.rules.mak | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/python/config/Make.rules.mak b/python/config/Make.rules.mak index c879f4c980d..e2499216afd 100644 --- a/python/config/Make.rules.mak +++ b/python/config/Make.rules.mak @@ -27,7 +27,7 @@ OPTIMIZE = yes # # Specify your C++ compiler, or leave unset for auto-detection. The -# only value currently supported to build IcePy is VC100. +# Ice for Python supports VC100 with Python2.7 and v140 with Python3.5. # #CPP_COMPILER = VCxxx @@ -68,10 +68,7 @@ PYLIBSUFFIX = _$(LIBSUFFIX) RCFLAGS = -D_DEBUG !endif -# -# Import libraries are located automatically -# -ICE_LIBS = +ICE_LIBS = IceLocatorDiscovery$(LIBSUFFIX).lib IceDiscovery$(LIBSUFFIX).lib !if "$(ice_src_dist)" != "" ICE_CPPFLAGS = -I"$(ice_cpp_dir)\include" |