We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 592f5f1 commit a402c29Copy full SHA for a402c29
1 file changed
CMakeLists.txt
@@ -29,10 +29,15 @@ target_compile_features(shapelycpp INTERFACE cxx_std_17)
29
30
# ---- Install — header-only C++ library --------------------------------------
31
# shapely/ — pure native C++ (zero pybind11 dependency)
32
+# pycpp/ — pybind11 wrappers (thin layer)
33
install(DIRECTORY shapely
34
DESTINATION include/shapelycpp
35
FILES_MATCHING PATTERN "*.h"
36
)
37
+install(DIRECTORY pycpp
38
+ DESTINATION include/shapelycpp
39
+ FILES_MATCHING PATTERN "*.h"
40
+)
41
42
include(CMakePackageConfigHelpers)
43
configure_package_config_file(
0 commit comments