forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request microsoft#1128 from cloudhan/master
add dependency for gli
- Loading branch information
Showing
2 changed files
with
12 additions
and
12 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
Source: gli | ||
Version: 0.8.2 | ||
Version: 0.8.2-1 | ||
Build-Depends: glm | ||
Description: OpenGL Image (GLI) https://gli.g-truc.net |
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 |
---|---|---|
@@ -1,20 +1,19 @@ | ||
#header-only library | ||
include(vcpkg_common_functions) | ||
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/gli-0.8.2.0) | ||
vcpkg_download_distfile(ARCHIVE | ||
URLS "https://github.com/g-truc/gli/archive/0.8.2.0.tar.gz" | ||
FILENAME "0.8.2.0.tar.gz" | ||
|
||
vcpkg_from_github( | ||
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO g-truc/gli | ||
REF 0.8.2.0 | ||
SHA512 c254a4e1497d0add985e4a882c552db99c512cc0e9cc72145d51a6e7deada817d624d9818099a47136a8a3ef1223a26a34e355e3c713166f0bb062e506059834 | ||
HEAD_REF master | ||
) | ||
vcpkg_extract_source_archive(${ARCHIVE}) | ||
|
||
# Remove glm/CMakeLists.txt | ||
file(REMOVE ${SOURCE_PATH}/glm/CMakeLists.txt) | ||
|
||
# Put the license file where vcpkg expects it | ||
file(COPY ${SOURCE_PATH}/external/glm/copying.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/gli/) | ||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/gli/copying.txt ${CURRENT_PACKAGES_DIR}/share/gli/copyright) | ||
# manual.md contains the "licenses" section for the project | ||
file(COPY ${SOURCE_PATH}/manual.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/gli/) | ||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/gli/manual.md ${CURRENT_PACKAGES_DIR}/share/gli/copyright) | ||
|
||
# Copy the glm header files | ||
file(GLOB HEADER_FILES ${SOURCE_PATH}/gli/*) | ||
file(GLOB HEADER_FILES "${SOURCE_PATH}/gli/*.hpp" "${SOURCE_PATH}/gli/core") | ||
file(COPY ${HEADER_FILES} DESTINATION ${CURRENT_PACKAGES_DIR}/include/gli) |