rename yaze_python to yaze_py

This commit is contained in:
scawful
2024-08-06 21:33:44 -04:00
parent a6b99e1e77
commit e2fe4bf6b8

View File

@@ -1,20 +1,20 @@
find_package(Python3 COMPONENTS Interpreter Development REQUIRED)
add_library(
yaze_python
yaze_py
py/yaze_python.cc
)
set(PYTHON_HEADERS /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.9/Headers)
target_include_directories(
yaze_python PUBLIC
yaze_py PUBLIC
lib/
app/
${PYTHON_HEADERS}
)
target_link_libraries(
yaze_python PUBLIC
yaze_py PUBLIC
Python
)