Initial Commit (tested training, testing, and TRT conversion)
This commit is contained in:
17
flightlib/cmake/pybind11_download.cmake
Normal file
17
flightlib/cmake/pybind11_download.cmake
Normal file
@@ -0,0 +1,17 @@
|
||||
cmake_minimum_required(VERSION 3.0.0)
|
||||
|
||||
project(pybind11-download)
|
||||
|
||||
include(ExternalProject)
|
||||
ExternalProject_Add(pybind11
|
||||
GIT_REPOSITORY https://cf.ghproxy.cc/https://github.com/pybind/pybind11
|
||||
GIT_TAG master
|
||||
SOURCE_DIR "${PROJECT_SOURCE_DIR}/externals/pybind11-src"
|
||||
BINARY_DIR "${PROJECT_SOURCE_DIR}/externals/pybind11-bin"
|
||||
CONFIGURE_COMMAND ""
|
||||
CMAKE_ARGS ""
|
||||
BUILD_COMMAND ""
|
||||
INSTALL_COMMAND ""
|
||||
TEST_COMMAND ""
|
||||
UPDATE_DISCONNECTED ON
|
||||
)
|
||||
Reference in New Issue
Block a user