Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
Rename cpp_region to py_region
Browse files Browse the repository at this point in the history
  • Loading branch information
david-ragazzi committed Jun 29, 2015
1 parent df85929 commit 299d44f
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,18 +412,18 @@ def getExtensionModules(nupicCoreReleaseDir, platform, bitness, cmdOptions=None)

extensions = []

libDynamicCppRegion = Extension(
"nupic." + getLibPrefix(platform) + "cpp_region",
libDynamicPyRegion = Extension(
"nupic." + getLibPrefix(platform) + "py_region",
extra_compile_args=commonCompileFlags,
define_macros=commonDefines,
extra_link_args=commonLinkFlags,
include_dirs=commonIncludeDirs,
libraries=commonLibraries,
sources=pythonSupportSources +
["extensions/cpp_region/PyRegion.cpp",
"extensions/cpp_region/unittests/PyHelpersTest.cpp"],
["extensions/py_region/PyRegion.cpp",
"extensions/py_region/unittests/PyHelpersTest.cpp"],
extra_objects=commonObjects)
extensions.append(libDynamicCppRegion)
extensions.append(libDynamicPyRegion)

#
# SWIG
Expand Down

0 comments on commit 299d44f

Please sign in to comment.