Updated pybind11 bindings

Signed-off-by: Fabian Sauter <sauter.fabian@mailbox.org>
This commit is contained in:
Fabian Sauter 2022-06-13 14:57:04 +02:00
parent baa84827d6
commit 2ec35acba5
2 changed files with 69 additions and 65 deletions

View file

@ -82,12 +82,18 @@ endif()
if(KOMPUTE_OPT_ANDROID_BUILD)
target_link_libraries(kompute PUBLIC kompute_vk_ndk_wrapper
android
PRIVATE kp_logger
fmt::fmt)
kp_logger
PRIVATE fmt::fmt)
else()
target_link_libraries(kompute PUBLIC Vulkan::Vulkan
PRIVATE fmt::fmt
kp_logger)
kp_logger
PRIVATE fmt::fmt)
endif()
if(KOMPUTE_OPT_BUILD_PYTHON)
include_directories(${PYTHON_INCLUDE_DIRS})
target_link_libraries(kompute PRIVATE pybind11::headers ${PYTHON_LIBRARIES})
endif()
if(KOMPUTE_OPT_USE_BUILD_IN_VULKAN_HEADER)