Skip to content

Commit

Permalink
Merge pull request microsoft#1128 from cloudhan/master
Browse files Browse the repository at this point in the history
add dependency for gli
  • Loading branch information
ras0219-msft authored May 23, 2017
2 parents b376bf3 + ceae209 commit e9b561f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
3 changes: 2 additions & 1 deletion ports/gli/CONTROL
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
21 changes: 10 additions & 11 deletions ports/gli/portfile.cmake
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)

0 comments on commit e9b561f

Please sign in to comment.