Initial Commit (tested training, testing, and TRT conversion)

This commit is contained in:
Lu Junjie
2024-10-20 17:01:07 +08:00
parent 86d2f311f8
commit 5738088bae
221 changed files with 59249 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
cmake_minimum_required(VERSION 3.0.0)
project(yaml-download)
include(ExternalProject)
ExternalProject_Add(yaml
GIT_REPOSITORY https://cf.ghproxy.cc/https://github.com/jbeder/yaml-cpp
GIT_TAG master
SOURCE_DIR "${PROJECT_SOURCE_DIR}/externals/yaml-src"
BINARY_DIR "${PROJECT_SOURCE_DIR}/externals/yaml-bin"
CONFIGURE_COMMAND ""
CMAKE_ARGS "-DBUILD_TESTING=OFF -DYAML_CPP_INSTALL=OFF"
CMAKE_CACHE_ARGS -DBUILD_TESTING:BOOL=OFF -DYAML_CPP_INSTALLC:BOOL=ON
BUILD_COMMAND ""
INSTALL_COMMAND ""
TEST_COMMAND ""
UPDATE_DISCONNECTED ON
)