aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
authorJacob Kahn <jacobkahn1@gmail.com>2021-05-21 03:05:10 -0500
committerGitHub <noreply@github.com>2021-05-21 01:05:10 -0700
commit1ee6b340a3b1b77dbdf37f11ea75eaba222ad700 (patch)
treebd2a9bbda5ecf7c2310e27bca9a5e38481e255ea /ports
parent38a0efba5b23e4cf72bf4383a0015aec6b19e04d (diff)
downloadvcpkg-1ee6b340a3b1b77dbdf37f11ea75eaba222ad700.tar.gz
vcpkg-1ee6b340a3b1b77dbdf37f11ea75eaba222ad700.zip
[flashlight-cuda] Update port (#17645)
* [flashlight-cuda] Update port * Ran x-add-version --overwrite-version * remove usage, use vcpkg_fixup_cmake_targets * overwrite version * remove usage install * overwrite version * update port version * x-add-version * Update baseline version Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
Diffstat (limited to 'ports')
-rw-r--r--ports/flashlight-cuda/portfile.cmake18
-rw-r--r--ports/flashlight-cuda/vcpkg.json2
2 files changed, 11 insertions, 9 deletions
diff --git a/ports/flashlight-cuda/portfile.cmake b/ports/flashlight-cuda/portfile.cmake
index d61bcdc80..982269b8f 100644
--- a/ports/flashlight-cuda/portfile.cmake
+++ b/ports/flashlight-cuda/portfile.cmake
@@ -1,14 +1,14 @@
-if (EXISTS "${CURRENT_INSTALLED_DIR}/share/flashlight-cpu")
- message(FATAL_ERROR "flashlight-cpu is installed; only one Flashlight "
- "backend package can be installed at once. Uninstall and try again:"
- "\n vcpkg remove flashlight-cpu\n")
+if (EXISTS "${CURRENT_INSTALLED_DIR}/share/flashlight")
+ message(FATAL_ERROR "Only one of flashlight-cpu and flashlight-cuda"
+ "can be installed at once. Uninstall and try again:"
+ "\n vcpkg remove flashlight-cuda\n")
endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO flashlight/flashlight
- REF 76f7fa7f5a162c73d6bf8befdb8e197a4dc7515d # 0.3 branch tip
- SHA512 87786f9443d27ac9b513cf582caea13dccfa344e55a4970c0c2c7df7530260ad38cc578690ebf2fa256e8ea943abea547e0e6d5ee0ba090b336c4f7af8d2f53f
+ REF 626914e79073c5547513de649af706f7e2b796ad # 0.3 branch tip
+ SHA512 a22057cfa4cfe7acd95cbc5445a30870cce3cdde89066d1d75f40be0d73b069a49e89b226fe5337488cfe5618dd25958679c0636a3e4008312f01606328becfa
HEAD_REF master
)
@@ -32,7 +32,7 @@ vcpkg_check_features(
imgclass FL_BUILD_APP_IMGCLASS
lm FL_BUILD_APP_LM
objdet FL_BUILD_APP_OBJDET
- )
+)
# Build and install
vcpkg_configure_cmake(
@@ -44,6 +44,8 @@ vcpkg_configure_cmake(
)
vcpkg_install_cmake()
+vcpkg_fixup_cmake_targets(CONFIG_PATH share/flashlight-cuda TARGET_PATH share/flashlight)
+
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
@@ -71,7 +73,7 @@ if ("lm" IN_LIST FEATURES)
fl_lm_dictionary_builder
fl_lm_train
fl_lm_test
- )
+ )
endif()
list(LENGTH FLASHLIGHT_TOOLS NUM_TOOLS)
if (NUM_TOOLS GREATER 0)
diff --git a/ports/flashlight-cuda/vcpkg.json b/ports/flashlight-cuda/vcpkg.json
index 9e53542b2..efb4159cb 100644
--- a/ports/flashlight-cuda/vcpkg.json
+++ b/ports/flashlight-cuda/vcpkg.json
@@ -1,6 +1,7 @@
{
"name": "flashlight-cuda",
"version": "0.3",
+ "port-version": 1,
"description": "A C++ standalone library for machine learning. CUDA backend.",
"homepage": "https://github.com/facebookresearch/flashlight",
"supports": "!(windows | osx)",
@@ -27,7 +28,6 @@
"dependencies": [
{
"name": "arrayfire",
- "default-features": false,
"features": [
"cuda"
]