diff options
author | Joshua Goins <josh@redstrate.com> | 2023-01-06 15:47:14 -0500 |
---|---|---|
committer | Joshua Goins <josh@redstrate.com> | 2023-01-12 10:08:52 -0500 |
commit | aa7c910e262d4c3d655a9a7f853b52d7cd0641a9 (patch) | |
tree | 8ea628921f8a9ef9950e7aab03b0b049f3df88a2 /libraries/hoedown/CMakeLists.txt | |
parent | 24a4bd3a1c33702946b88a3d8017268fb8134210 (diff) | |
download | PrismLauncher-aa7c910e262d4c3d655a9a7f853b52d7cd0641a9.tar.gz PrismLauncher-aa7c910e262d4c3d655a9a7f853b52d7cd0641a9.tar.bz2 PrismLauncher-aa7c910e262d4c3d655a9a7f853b52d7cd0641a9.zip |
build: remove hoedown vendored source
Signed-off-by: Joshua Goins <josh@redstrate.com>
Diffstat (limited to 'libraries/hoedown/CMakeLists.txt')
-rw-r--r-- | libraries/hoedown/CMakeLists.txt | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/libraries/hoedown/CMakeLists.txt b/libraries/hoedown/CMakeLists.txt deleted file mode 100644 index 7902e734..00000000 --- a/libraries/hoedown/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -# hoedown 3.0.2 - https://github.com/hoedown/hoedown/archive/3.0.2.tar.gz -project(hoedown LANGUAGES C VERSION 3.0.2) - -set(HOEDOWN_SOURCES -include/hoedown/autolink.h -include/hoedown/buffer.h -include/hoedown/document.h -include/hoedown/escape.h -include/hoedown/html.h -include/hoedown/stack.h -include/hoedown/version.h -src/autolink.c -src/buffer.c -src/document.c -src/escape.c -src/html.c -src/html_blocks.c -src/html_smartypants.c -src/stack.c -src/version.c -) - -# Include self. -add_library(hoedown STATIC ${HOEDOWN_SOURCES}) - -target_include_directories(hoedown PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include) |