We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e556ad commit 0684558Copy full SHA for 0684558
2 files changed
pyproject.toml
@@ -6,7 +6,7 @@ build-backend = "xmake_python"
6
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
7
[project]
8
name = "xmake-python"
9
-version = "0.1.6"
+version = "0.1.7"
10
description = "xmake Python build system (PEP 517)"
11
readme = "README.md"
12
# from typing import Self
src/xmake_python/make.py
@@ -90,7 +90,7 @@ def show(self):
90
return 1
91
with open(makefile) as f:
92
text = f.read()
93
- if text.find(".c") == -1:
+ if text.find(".c") == -1 and text.find(".h") == -1:
94
return 0
95
if text.find("pkg-config --cflags python") == -1:
96
0 commit comments