File: CMakeLists.txt

package info (click to toggle)
pybind11 3.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,448 kB
  • sloc: cpp: 27,239; python: 13,512; ansic: 4,244; makefile: 204; sh: 36
file content (5 lines) | stat: -rw-r--r-- 137 bytes parent folder | download
1
2
3
4
5
cmake_minimum_required(VERSION 3.10)
project(pybind11-example)

find_package(pybind11 REQUIRED)
pybind11_add_module(example example.cpp)