]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/opentelemetry-cpp/tools/vcpkg/ports/pystring/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / tools / vcpkg / ports / pystring / CMakeLists.txt
CommitLineData
1e59de90
TL
1cmake_minimum_required(VERSION 3.5.1)
2project(libpystring C CXX)
3
4if(MSVC)
5 add_compile_options(/W3 /wd4005 /wd4996 /wd4018 -D_CRT_SECURE_NO_WARNINGS)
6endif()
7
8add_library(libpystring pystring.cpp)
9
10install(
11 TARGETS libpystring
12 RUNTIME DESTINATION bin
13 LIBRARY DESTINATION lib
14 ARCHIVE DESTINATION lib
15)
16
17if(NOT DISABLE_INSTALL_HEADERS)
18 install(FILES pystring.h DESTINATION include)
19endif()