forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
project(P7) | ||
cmake_minimum_required(VERSION 3.0) | ||
|
||
set(SOURCES "Sources/ClBaical.cpp" | ||
"Sources/ClFile.cpp" | ||
"Sources/ClText.cpp" | ||
"Sources/Client.cpp" | ||
"Sources/ClNull.cpp" | ||
"Sources/CRC32.cpp" | ||
"Sources/Proxy.cpp" | ||
"Sources/Telemetry.cpp" | ||
"Sources/Trace.cpp") | ||
|
||
if(WIN32) | ||
set(RESOURCES "Sources/P7Client.rc") | ||
else() | ||
set(RESOURCES "") | ||
endif() | ||
|
||
add_library(P7 "${SOURCES}" "${RESOURCES}") | ||
target_include_directories(P7 PRIVATE "Headers/") | ||
target_include_directories(P7 PRIVATE "Shared/") | ||
if(WIN32) | ||
target_include_directories(P7 PRIVATE "Shared/Platforms/Windows_x86/") | ||
target_link_libraries(P7 "ws2_32") | ||
else() | ||
target_include_directories(P7 PRIVATE "Shared/Platforms/Linux_x86/") | ||
endif() | ||
|
||
if(WIN32) | ||
set_target_properties(P7 PROPERTIES PREFIX "") | ||
if(CMAKE_SIZEOF_VOID_P EQUAL 8) | ||
set_target_properties(P7 PROPERTIES DEBUG_POSTFIX "x64d") | ||
set_target_properties(P7 PROPERTIES RELEASE_POSTFIX "x64") | ||
else() | ||
set_target_properties(P7 PROPERTIES DEBUG_POSTFIX "x32d") | ||
set_target_properties(P7 PROPERTIES RELEASE_POSTFIX "x32") | ||
endif() | ||
else() | ||
set_target_properties(P7 PROPERTIES PREFIX "lib") | ||
set_target_properties(P7 PROPERTIES POSTFIX "") | ||
set_target_properties(P7 PROPERTIES DEBUG_POSTFIX "d") | ||
endif() | ||
|
||
install(TARGETS P7 | ||
RUNTIME DESTINATION "bin" | ||
ARCHIVE DESTINATION "lib" | ||
LIBRARY DESTINATION "lib") | ||
|
||
install(DIRECTORY Headers/ | ||
DESTINATION include/P7 | ||
FILES_MATCHING PATTERN "*.h") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Source: libp7-baical | ||
Version: 4.1 | ||
Description: P7 is a library for high-speed sending telemetry & trace data from application |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
include(vcpkg_common_functions) | ||
|
||
if(VCPKG_TARGET_ARCHITECTURE STREQUAL arm) | ||
message(FATAL_ERROR "libP7 does not support ARM") | ||
endif() | ||
|
||
set(LIBP7_VERSION 4.1) | ||
set(LIBP7_HASH 6259416378f1fe60ad6097faf9facd2de1a3ea13e8015a5727d6a179caa88a7f6707b47273afceebc16b39883da4768f29feac199f7d6c354b744b643c2044ab) | ||
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/libP7_v${LIBP7_VERSION}) | ||
|
||
vcpkg_download_distfile(ARCHIVE | ||
URLS "http://baical.net/files/libP7_v${LIBP7_VERSION}.zip" | ||
FILENAME "libP7_v${LIBP7_VERSION}.zip" | ||
SHA512 ${LIBP7_HASH} | ||
) | ||
vcpkg_extract_source_archive(${ARCHIVE} ${SOURCE_PATH}) | ||
|
||
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) | ||
|
||
vcpkg_configure_cmake( | ||
SOURCE_PATH ${SOURCE_PATH} | ||
PREFER_NINJA | ||
) | ||
|
||
vcpkg_build_cmake() | ||
vcpkg_install_cmake() | ||
vcpkg_copy_pdbs() | ||
|
||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) | ||
|
||
file(COPY ${SOURCE_PATH}/License.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/libp7-baical/) | ||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/libp7-baical/License.txt ${CURRENT_PACKAGES_DIR}/share/libp7-baical/copyright) |