File: CMakeLists.pybind.in

package info (click to toggle)
gromacs 2026~rc-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 274,216 kB
  • sloc: xml: 3,831,143; cpp: 686,111; ansic: 75,300; python: 21,171; sh: 3,553; perl: 2,246; yacc: 644; fortran: 397; lisp: 265; makefile: 174; lex: 125; awk: 68; csh: 39
file content (16 lines) | stat: -rw-r--r-- 617 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
cmake_minimum_required(VERSION 3.28)
cmake_policy(VERSION 3.28)

project(pybind-download NONE)

include(ExternalProject)
ExternalProject_Add(pybind11
                    GIT_REPOSITORY    https://github.com/pybind/pybind11.git
                    GIT_TAG           v2.12
                    SOURCE_DIR        "${CMAKE_CURRENT_BINARY_DIR}/pybind-src"
                    BINARY_DIR        "${CMAKE_CURRENT_BINARY_DIR}/pybind-build"
                    CONFIGURE_COMMAND ""
                    BUILD_COMMAND     ""
                    INSTALL_COMMAND   ""
                    TEST_COMMAND      ""
                    )