Skip to content

Commit

Permalink
install-rosco -> compile-rosco
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhar-abbas committed Feb 3, 2021
1 parent 529183c commit 32a5f9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ You should then do step three _OR_ four. If you do not want to compile the ROSCO
git submodule update
conda install compilers # (Mac/Linux only)
conda install m2w64-toolchain libpython # (Windows only)
python setup.py install --install-rosco
python setup.py install --compile-rosco
```

4. #### Clone and Install the ROSCO toolbox _without_ ROSCO
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ def run(self):
cmdclass = {'build_ext': CMakeBuildExt, 'upload': UploadCommand},
zip_safe = False,
)
if "--install-rosco" in sys.argv:
if "--compile-rosco" in sys.argv:
metadata['ext_modules'] = [roscoExt]
sys.argv.remove("--install-rosco")
sys.argv.remove("--compile-rosco")

setup(**metadata)

0 comments on commit 32a5f9d

Please sign in to comment.