Initial commit.
This commit is contained in:
commit
59c6161fdb
134 changed files with 4751 additions and 0 deletions
19
src/web/CMakeLists.txt
Normal file
19
src/web/CMakeLists.txt
Normal file
|
@ -0,0 +1,19 @@
|
|||
list(APPEND web_LIB_INCLUDES
|
||||
xml/XmlParser.cpp
|
||||
xml/XmlDocument.cpp
|
||||
xml/XmlElement.cpp
|
||||
xml/XmlAttribute.cpp
|
||||
xml/XmlProlog.cpp
|
||||
markdown/MarkdownParser.cpp
|
||||
html/HtmlWriter.cpp
|
||||
html/HtmlDocument.cpp)
|
||||
|
||||
# add the executable
|
||||
add_library(web SHARED ${web_LIB_INCLUDES})
|
||||
|
||||
target_include_directories(web PUBLIC
|
||||
"${PROJECT_SOURCE_DIR}/src/core/"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/xml"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/html"
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue