mirror of https://github.com/mgba-emu/mgba.git
Python: Improve setup.py generation
This commit is contained in:
parent
04ebc6a06e
commit
1dcf70d6d3
|
@ -1,5 +1,10 @@
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
import re
|
import re
|
||||||
|
import os
|
||||||
|
|
||||||
|
os.environ["BINDIR"] = "${CMAKE_BINARY_DIR}"
|
||||||
|
os.environ["CPPFLAGS"] = " ".join([d for d in "${INCLUDE_FLAGS}".split(";") if d])
|
||||||
|
os.chdir("${CMAKE_CURRENT_SOURCE_DIR}")
|
||||||
|
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Programming Language :: C",
|
"Programming Language :: C",
|
||||||
|
|
Loading…
Reference in New Issue