Skip to content

Commit

Permalink
setup.py: Remove warning due to unused options (#2368)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Cornu authored Jun 2, 2023
1 parent d2d8110 commit b4ade55
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,9 +419,15 @@ def setup_package():
"-DNRN_ENABLE_MODULE_INSTALL=OFF",
"-DNRN_ENABLE_REL_RPATH=ON",
"-DCMAKE_VERBOSE_MAKEFILE=OFF",
"-DCORENRN_ENABLE_OPENMP=ON", # TODO: manylinux portability questions
"-DNMODL_ENABLE_PYTHON_BINDINGS=ON",
]
+ (
[
"-DCORENRN_ENABLE_OPENMP=ON", # TODO: manylinux portability questions
"-DNMODL_ENABLE_PYTHON_BINDINGS=ON",
]
if Components.CORENRN
else []
)
+ (
[
"-DCORENRN_ENABLE_GPU=ON",
Expand Down

0 comments on commit b4ade55

Please sign in to comment.