early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

20
externals/vcpkg/ports/foxi/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,20 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO houseroad/foxi
REF c278588e34e535f0bb8f00df3880d26928038cad
SHA512 ad42cfd70e40ba0f0a9187b34ae9e3bd361c8c0038669f4c1591c4f7421d12ad93f76f42b33c2575eea1a3ddb3ff781da2895cdc636df5b60422598f450203c7
PATCHES
remove-test-targets.patch
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
)
vcpkg_cmake_install()
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
file(REMOVE_RECURSE
"${CURRENT_PACKAGES_DIR}/debug/include"
"${CURRENT_PACKAGES_DIR}/debug/share"
)

View File

@@ -0,0 +1,60 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b406d0f..c5d04d5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -65,7 +65,7 @@ if(MSVC)
add_msvc_runtime_flag(foxi_loader)
endif()
-if (NOT ANDROID AND NOT IOS)
+if (FALSE)
# ---[ FOXI wrapper
add_library(foxi_wrapper MODULE foxi/onnxifi_wrapper.c)
target_include_directories(foxi_wrapper PRIVATE
@@ -93,17 +93,6 @@ if (NOT ANDROID AND NOT IOS)
endif()
endif()
-# ---[ FOXI dummy backend
-add_library(foxi_dummy SHARED foxi/onnxifi_dummy.c)
-target_include_directories(foxi_dummy PRIVATE
- $<BUILD_INTERFACE:${FOXI_ROOT}>
- $<INSTALL_INTERFACE:include>)
-target_link_libraries(foxi_dummy PUBLIC foxi ${CMAKE_DL_LIBS})
-target_compile_definitions(foxi_dummy PRIVATE ONNXIFI_BUILD_LIBRARY=TRUE)
-if(MSVC)
- add_msvc_runtime_flag(foxi_dummy)
-endif()
-
install(DIRECTORY ${FOXI_ROOT}/foxi
DESTINATION include
FILES_MATCHING
@@ -114,10 +103,10 @@ install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/foxi
PATTERN "*.h")
install(TARGETS
- foxi foxi_dummy foxi_loader
+ foxi_loader
EXPORT ONNXTargets DESTINATION lib)
-if(NOT ANDROID AND NOT IOS)
+if(FALSE)
install(TARGETS foxi_wrapper
EXPORT ONNXTargets DESTINATION lib)
endif()
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c5d04d5..cc7d18a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -61,9 +61,6 @@ set_target_properties(foxi_loader
C_EXTENSIONS
NO)
target_link_libraries(foxi_loader PUBLIC foxi ${CMAKE_DL_LIBS})
-if(MSVC)
- add_msvc_runtime_flag(foxi_loader)
-endif()
if (FALSE)
# ---[ FOXI wrapper

14
externals/vcpkg/ports/foxi/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,14 @@
{
"name": "foxi",
"version-date": "2021-12-01",
"description": "ONNXIFI with Facebook Extension",
"homepage": "https://github.com/houseroad/foxi",
"license": "MIT",
"supports": "!uwp",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
}
]
}