summaryrefslogtreecommitdiffstats
path: root/library/cpp/html
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/html')
-rw-r--r--library/cpp/html/escape/CMakeLists.txt8
-rw-r--r--library/cpp/html/pcdata/CMakeLists.txt8
2 files changed, 16 insertions, 0 deletions
diff --git a/library/cpp/html/escape/CMakeLists.txt b/library/cpp/html/escape/CMakeLists.txt
new file mode 100644
index 00000000000..0716420f684
--- /dev/null
+++ b/library/cpp/html/escape/CMakeLists.txt
@@ -0,0 +1,8 @@
+add_library(cpp-html-escape)
+target_link_libraries(cpp-html-escape PUBLIC
+ contrib-libs-cxxsupp
+ yutil
+)
+target_sources(cpp-html-escape PRIVATE
+ ${CMAKE_SOURCE_DIR}/library/cpp/html/escape/escape.cpp
+)
diff --git a/library/cpp/html/pcdata/CMakeLists.txt b/library/cpp/html/pcdata/CMakeLists.txt
new file mode 100644
index 00000000000..799ab406b80
--- /dev/null
+++ b/library/cpp/html/pcdata/CMakeLists.txt
@@ -0,0 +1,8 @@
+add_library(cpp-html-pcdata)
+target_link_libraries(cpp-html-pcdata PUBLIC
+ contrib-libs-cxxsupp
+ yutil
+)
+target_sources(cpp-html-pcdata PRIVATE
+ ${CMAKE_SOURCE_DIR}/library/cpp/html/pcdata/pcdata.cpp
+)