-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tal Regev <[email protected]>
- Loading branch information
Showing
4 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# header-only library | ||
set(VCPKG_BUILD_TYPE release) | ||
|
||
vcpkg_from_github( | ||
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO aparis69/MarchingCubeCpp | ||
REF f03a1b3ec29b1d7d865691ca8aea4f1eb2c2873d | ||
SHA512 879204bbfe6a9ad6a6b050b2ba5126884e0b7d01c883d7319dc1deed0c3f6d1658493ba4b39bfcce8c9643739e812d2d69cdbd9be92cd728e0fcccfeb64f898e | ||
) | ||
|
||
# Install source files | ||
file(INSTALL | ||
"${SOURCE_PATH}/MC.h" | ||
"${SOURCE_PATH}/noise.h" | ||
DESTINATION | ||
"${CURRENT_PACKAGES_DIR}/include/${PORT}" | ||
) | ||
|
||
# Install license | ||
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/README.md") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name": "marchingcubecpp", | ||
"version-date": "2023-09-11", | ||
"description": "Marching cube implementation.", | ||
"homepage": "https://github.com/aparis69/MarchingCubeCpp", | ||
"license": "MIT" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"versions": [ | ||
{ | ||
"git-tree": "2d9e9847df59527d3538e9c93d5fe1b76737728c", | ||
"version-date": "2023-09-11", | ||
"port-version": 0 | ||
} | ||
] | ||
} |