Skip to content

Commit

Permalink
Merge pull request microsoft#4192 from atkawa7/darts-clone
Browse files Browse the repository at this point in the history
darts clone init
  • Loading branch information
alexkaratarakis authored Sep 1, 2018
2 parents 33286f9 + c217e60 commit 5e71d6b
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
29 changes: 29 additions & 0 deletions ports/darts-clone/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
cmake_minimum_required(VERSION 3.8)
project(darts)

if(MSVC)
add_compile_options(/W3 /wd4005 /wd4996 /wd4018 -D_CRT_SECURE_NO_WARNINGS)
endif()

add_library(darts src/darts.cc)

target_include_directories(darts
PUBLIC
$<INSTALL_INTERFACE:include>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/src
)

install(
TARGETS darts
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)

if(NOT DISABLE_INSTALL_HEADERS)
install(
DIRECTORY include/ DESTINATION include/
)
endif()
3 changes: 3 additions & 0 deletions ports/darts-clone/CONTROL
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Source: darts-clone
Version: 1767ab87cffe
Description: A static double-array trie structure
26 changes: 26 additions & 0 deletions ports/darts-clone/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
include(vcpkg_common_functions)
vcpkg_check_linkage(
ONLY_STATIC_LIBRARY
)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO s-yata/darts-clone
REF 1767ab87cffe7302856d1bb41e1c21b1df93f19e
SHA512 63112a4d8d6302d2602a8f161bf5fe5ec1b5b3b3097de9b28331f5261d76c06efb48601c08df26f242ddc881b917928baf54f24ccebac65da29e94380b6db0f5
HEAD_REF master
)

file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})


vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS_DEBUG
-DDISABLE_INSTALL_HEADERS=ON
)

vcpkg_install_cmake()
vcpkg_copy_pdbs()

file(INSTALL ${SOURCE_PATH}/COPYING.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/darts-clone RENAME copyright)

0 comments on commit 5e71d6b

Please sign in to comment.