plustache inital port (#4261)

* plustache port

* [plustache] Prefer static linking

* [plustache] Requires boost-algorithm
This commit is contained in:
Tom Henoch 2018-10-22 18:08:46 +02:00 committed by Robert Schumacher
parent 2db456f44a
commit 13e4ca6587
3 changed files with 68 additions and 0 deletions

View File

@ -0,0 +1,36 @@
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
project(plustache LANGUAGES CXX)
find_package(Boost REQUIRED COMPONENTS regex)
add_library(
plustache
src/template.cpp
src/context.cpp
)
target_include_directories(
plustache
PUBLIC
${CMAKE_CURRENT_LIST_DIR}/include
PRIVATE
${Boost_INCLUDE_DIRS}
)
target_link_libraries(
plustache
PRIVATE
${Boost_LIBRARIES}
)
install(TARGETS plustache
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
install(DIRECTORY ${CMAKE_CURRENT_LIST_DIR}/include/plustache DESTINATION include)

4
ports/plustache/CONTROL Normal file
View File

@ -0,0 +1,4 @@
Source: plustache
Version: 0.4.0-1
Description: {{mustaches}} for C++
Build-Depends: boost-regex, boost-algorithm

View File

@ -0,0 +1,28 @@
include(vcpkg_common_functions)
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO mrtazz/plustache
REF 3208529343e1858cfe504041be8c1fa0af0a59d1
SHA512 8d9ae368b2f276da2faaf4e3b543fc7ded88ebd8fbe33544aa7d85765a38d085d4c31bb68f6a2f73d4f660da1618d187fb94c74a5f6594e7642bf3949707c67b
HEAD_REF master
)
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
)
vcpkg_install_cmake()
vcpkg_copy_pdbs()
#Debug
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
# Handle copyright
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/plustache)
file(RENAME ${CURRENT_PACKAGES_DIR}/share/plustache/LICENSE ${CURRENT_PACKAGES_DIR}/share/plustache/copyright)