mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-07 05:10:39 +02:00
8 lines
275 B
CMake
8 lines
275 B
CMake
|
|
find_package (Python 3.11 COMPONENTS Interpreter Development)
|
|
find_package(pybind11 2.11 REQUIRED)
|
|
pybind11_add_module(_aare src/bindings.cpp)
|
|
set_target_properties(_aare PROPERTIES
|
|
LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}
|
|
)
|
|
target_link_libraries(_aare PRIVATE aare) |