File: CMakeLists.txt

package info (click to toggle)
opm-simulators 2025.10%2Bds-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,584 kB
  • sloc: cpp: 193,035; sh: 1,807; python: 1,704; lisp: 1,108; makefile: 29; awk: 10
file content (12 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
find_package(pybind11 2.2 CONFIG)

if(NOT pybind11_FOUND)
  include(DownloadPyBind11)
elseif(pybind11_VERSION VERSION_GREATER_EQUAL "2.3.0")
  if(CMAKE_VERSION VERSION_LESS 3.12)
    # SYSTEM is only support for pybind >= 2.3.0 and cmake <= 3.12.0 (Unfortunately querying the
    # version does not work. AT least we know the embedded one.
    set(PYBIND11_SYSTEM "SYSTEM")
  endif()
endif()
add_subdirectory( simulators )