Skip to content

Commit

Permalink
[ncnn] New Port (#26557)
Browse files Browse the repository at this point in the history
* [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>
  • Loading branch information
3 people committed Aug 29, 2022
1 parent 9bba286 commit 754b45e
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 0 deletions.
29 changes: 29 additions & 0 deletions ports/ncnn/portfile.cmake
Original file line number Diff line number Diff line change
@@ -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 changes: 18 additions & 0 deletions ports/ncnn/vcpkg.json
Original file line number Diff line number Diff line change
@@ -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
}
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -4940,6 +4940,10 @@
"baseline": "2.4.6",
"port-version": 2
},
"ncnn": {
"baseline": "20220729",
"port-version": 0
},
"ncurses": {
"baseline": "6.3",
"port-version": 1
Expand Down
9 changes: 9 additions & 0 deletions versions/n-/ncnn.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "e87afd4b85016896dc6903f9e65e1d239e614b0b",
"version": "20220729",
"port-version": 0
}
]
}

0 comments on commit 754b45e

Please sign in to comment.