Skip to content

Commit

Permalink
hopefully fixing issue #19
Browse files Browse the repository at this point in the history
  • Loading branch information
sfalkner committed Mar 13, 2018
1 parent b0e504f commit f975f94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project (RFR CXX)
# add a version number
set (RFR_VERSION_MAJOR 0)
set (RFR_VERSION_MINOR 7)
set (RFR_VERSION_RELEASE 3)
set (RFR_VERSION_RELEASE 4)

IF(NOT CMAKE_BUILD_TYPE)
SET(CMAKE_BUILD_TYPE "DEBUG")
Expand Down
3 changes: 2 additions & 1 deletion pyrfr/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from distutils.command.build import build
from setuptools.command.install import install
from distutils.core import setup, Extension
import distutils.command.install as orig


# Customize installation according to https://stackoverflow.com/a/21236111
Expand All @@ -13,7 +14,7 @@ def run(self):
class CustomInstall(install):
def run(self):
self.run_command('build_ext')
self.do_egg_install()
orig.install.run(self)


include_dirs = ['./include']
Expand Down

0 comments on commit f975f94

Please sign in to comment.