From e2fe4bf6b8e7d87b376631d2579915bca9babb7f Mon Sep 17 00:00:00 2001 From: scawful Date: Tue, 6 Aug 2024 21:33:44 -0400 Subject: [PATCH] rename yaze_python to yaze_py --- src/py/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/py/CMakeLists.txt b/src/py/CMakeLists.txt index 2a6a1af7..d38b5b2d 100644 --- a/src/py/CMakeLists.txt +++ b/src/py/CMakeLists.txt @@ -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 ) \ No newline at end of file