# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file Copyright.txt
cmake_minimum_required(VERSION 3.15)
project(custom_namespacing CXX)

find_package(AutoPyBind11)
autopybind11_fetch_build_pybind11(PYBIND11_DIR ${PYBIND11_SRC_DIR})
set(CUSTOM_NAMESPACE_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
add_subdirectory(mixed)
add_subdirectory(pure_python)
