mirror of
https://github.com/nomic-ai/kompute.git
synced 2026-05-11 17:09:59 +00:00
12 lines
196 B
CMake
12 lines
196 B
CMake
|
|
add_subdirectory(pybind11)
|
|
pybind11_add_module(kp src/main.cpp)
|
|
|
|
include_directories(
|
|
${PROJECT_SOURCE_DIR}/single_include/)
|
|
|
|
target_link_libraries(
|
|
kp PRIVATE
|
|
kompute::kompute)
|
|
|