mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 09:49:07 +08:00
13e4ca6587
* plustache port * [plustache] Prefer static linking * [plustache] Requires boost-algorithm
37 lines
635 B
CMake
37 lines
635 B
CMake
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)
|