Skip to content

Commit

Permalink
moving cmake config out of pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentadam87 committed Jul 4, 2024
1 parent ed4904d commit fdbd39a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def build_cmake(self, ext):
f"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY={str(ext_dir / ext.name / 'lib')}",
f"-DCMAKE_RUNTIME_OUTPUT_DIRECTORY={str(ext_dir / ext.name / 'bin')}",
f"-DCMAKE_VERBOSE_MAKEFILE:BOOL=on",
"-DCMAKE_CXX_STANDARD=14"
]

os.chdir(str(build_temp))
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,3 @@ line_length = 95
[build-system]
requires = ["poetry>=0.12", "cmake", "setuptools"] #, "tensorflow>=2.8.0,<2.9.0", "cmake"]
build-backend = "poetry.masonry.api"
# flags = ["-DCMAKE_CXX_STANDARD=14"] (removing because flags not a recognized property)

0 comments on commit fdbd39a

Please sign in to comment.