aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/uriparser/CMakeLists.txt
blob: 56d967e249bfaeb58dc3e1d2f0e13905b7dc2147 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# This file was gererated by the build system used internally in the Yandex monorepo.
# Only simple modifications are allowed (adding source-files to targets, adding simple properties
# like target_include_directories). These modifications will be ported to original
# ya.make files by maintainers. Any complex modifications which can't be ported back to the
# original buildsystem will not be accepted.



add_library(contrib-restricted-uriparser)
target_compile_options(contrib-restricted-uriparser PRIVATE
  -DURI_LIBRARY_BUILD
  -DURI_VISIBILITY
  -Wno-everything
)
target_include_directories(contrib-restricted-uriparser PUBLIC
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/include
)
target_include_directories(contrib-restricted-uriparser PRIVATE
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser
)
target_link_libraries(contrib-restricted-uriparser PUBLIC
  contrib-libs-libc_compat
)
target_sources(contrib-restricted-uriparser PRIVATE
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriCommon.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriCompare.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriEscape.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriFile.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriIp4.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriIp4Base.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriMemory.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriNormalize.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriNormalizeBase.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriParse.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriParseBase.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriQuery.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriRecompose.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriResolve.c
  ${CMAKE_SOURCE_DIR}/contrib/restricted/uriparser/src/UriShorten.c
)