-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[hffix] New port hffix library 1.0.0 #13433
Conversation
ports/hffix/portfile.cmake
Outdated
vcpkg_from_github( | ||
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO jamesdbrock/hffix | ||
REF v1.0.0 | ||
SHA512 0043b789e6ffdc32eaf2736a8621dd7fd54e1a16aae33bb1d5f642da1b04d150ed42d8f9ddd046013242164854d9091540452153f09459d05f9bf4a186c7b860 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
vcpkg_from_github( | |
OUT_SOURCE_PATH SOURCE_PATH | |
REPO jamesdbrock/hffix | |
REF v1.0.0 | |
SHA512 0043b789e6ffdc32eaf2736a8621dd7fd54e1a16aae33bb1d5f642da1b04d150ed42d8f9ddd046013242164854d9091540452153f09459d05f9bf4a186c7b860 | |
vcpkg_from_github( | |
OUT_SOURCE_PATH SOURCE_PATH | |
REPO jamesdbrock/hffix | |
REF v1.0.0 | |
SHA512 0043b789e6ffdc32eaf2736a8621dd7fd54e1a16aae33bb1d5f642da1b04d150ed42d8f9ddd046013242164854d9091540452153f09459d05f9bf4a186c7b860 | |
HEAD_REF master |
ports/hffix/portfile.cmake
Outdated
vcpkg_configure_cmake( | ||
SOURCE_PATH ${SOURCE_PATH} | ||
PREFER_NINJA |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
vcpkg_configure_cmake( | |
SOURCE_PATH ${SOURCE_PATH} | |
PREFER_NINJA | |
vcpkg_configure_cmake( | |
SOURCE_PATH ${SOURCE_PATH} | |
PREFER_NINJA |
ports/hffix/CMakeLists.txt
Outdated
|
||
include(GNUInstallDirs) | ||
|
||
add_library(hffix-header INTERFACE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add_library(hffix-header INTERFACE) | |
add_library(hffix INTERFACE) |
In my opinion, it might be better to rename it as hffix
.
ports/hffix/CMakeLists.txt
Outdated
include(GNUInstallDirs) | ||
|
||
add_library(hffix-header INTERFACE) | ||
target_include_directories(hffix-header INTERFACE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
target_include_directories(hffix-header INTERFACE | |
target_include_directories(hffix INTERFACE |
ports/hffix/CMakeLists.txt
Outdated
) | ||
|
||
install( | ||
TARGETS hffix-header |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TARGETS hffix-header | |
TARGETS hffix |
Thanks for the PR! |
Describe the pull request
What does your PR fix? Fixes [New Port Request] hffix #13432
Which triplets are supported/not supported? Have you updated the CI baseline?
Does your PR follow the maintainer guide?