mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 05:19:06 +08:00
[ncnn] New Port (#26557)
* [ncnn] Add new port * [ncnn] Add new port * update version * add ncnn options * update vcpkg.json to constraint supported platforms * Add a new final line * update version * Update ports/ncnn/portfile.cmake Co-authored-by: Thomas1664 <46387399+Thomas1664@users.noreply.github.com> * fixed ncnn install error * Update to latest upstream version * Fixup pc files * version * unsupported on Windows arm * version Co-authored-by: holylong <mrhlingchen@163.com> Co-authored-by: Jonliu1993 <13720414433@163.com>
This commit is contained in:
parent
9bba2861b8
commit
754b45e090
29
ports/ncnn/portfile.cmake
Normal file
29
ports/ncnn/portfile.cmake
Normal file
@ -0,0 +1,29 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO Tencent/ncnn
|
||||
REF 20220729
|
||||
SHA512 0df877ee42edc32faa6891c8b234fc21064b18c1dc8c612b43757daf5f912530f3d015c783e6e199c2884616a88137d10f9c899528000f25e9d0881f028a9586
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" BUILD_SHARED)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH "${SOURCE_PATH}"
|
||||
OPTIONS
|
||||
-DNCNN_BUILD_TOOLS=OFF
|
||||
-DNCNN_BUILD_EXAMPLES=OFF
|
||||
-DNCNN_BUILD_BENCHMARK=OFF
|
||||
-DNCNN_SHARED_LIB=${BUILD_SHARED}
|
||||
)
|
||||
|
||||
vcpkg_cmake_install()
|
||||
|
||||
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/ncnn)
|
||||
vcpkg_copy_pdbs()
|
||||
vcpkg_fixup_pkgconfig()
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
||||
|
||||
file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
18
ports/ncnn/vcpkg.json
Normal file
18
ports/ncnn/vcpkg.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "ncnn",
|
||||
"version": "20220729",
|
||||
"description": "ncnn is a high-performance neural network inference computing framework.",
|
||||
"homepage": "https://github.com/Tencent/ncnn",
|
||||
"license": "BSD-3-Clause",
|
||||
"supports": "!(windows & arm)",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake-config",
|
||||
"host": true
|
||||
}
|
||||
]
|
||||
}
|
@ -4940,6 +4940,10 @@
|
||||
"baseline": "2.4.6",
|
||||
"port-version": 2
|
||||
},
|
||||
"ncnn": {
|
||||
"baseline": "20220729",
|
||||
"port-version": 0
|
||||
},
|
||||
"ncurses": {
|
||||
"baseline": "6.3",
|
||||
"port-version": 1
|
||||
|
9
versions/n-/ncnn.json
Normal file
9
versions/n-/ncnn.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "e87afd4b85016896dc6903f9e65e1d239e614b0b",
|
||||
"version": "20220729",
|
||||
"port-version": 0
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user