early-access version 2853
This commit is contained in:
36
externals/vcpkg/ports/plustache/CMakeLists.txt
vendored
Executable file
36
externals/vcpkg/ports/plustache/CMakeLists.txt
vendored
Executable 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)
|
||||
26
externals/vcpkg/ports/plustache/portfile.cmake
vendored
Executable file
26
externals/vcpkg/ports/plustache/portfile.cmake
vendored
Executable file
@@ -0,0 +1,26 @@
|
||||
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)
|
||||
10
externals/vcpkg/ports/plustache/vcpkg.json
vendored
Executable file
10
externals/vcpkg/ports/plustache/vcpkg.json
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "plustache",
|
||||
"version-string": "0.4.0",
|
||||
"port-version": 2,
|
||||
"description": "{{mustaches}} for C++",
|
||||
"dependencies": [
|
||||
"boost-algorithm",
|
||||
"boost-regex"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user