blob: ef9021813e14b1af9f5b1a70f44473cbb492a893 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
cmake_policy(SET CMP0078 NEW)
find_package(Python REQUIRED COMPONENTS Development)
find_package (SWIG REQUIRED)
include(UseSWIG)
set_property (SOURCE example.i PROPERTY SWIG_MODULE_NAME "new_example")
swig_add_library(example LANGUAGE python TYPE MODULE SOURCES example.i)
target_link_libraries(example PRIVATE Python::Module)
|