diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-08-05 02:38:22 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-08-05 02:38:22 +0200 |
| commit | 335c82d7a21e7044eb0bf93c019428edb1c22e14 (patch) | |
| tree | 2c0780a68856a72e5323abe0398def70283e137e /lib/gumbo-parser | |
| parent | 038d978696eed71cf724d36d8b4e5d09ba83ddd8 (diff) | |
| parent | 31c7b6b737c5e48e5c16debb8d7b0e80feb6586e (diff) | |
| download | kristall-335c82d7a21e7044eb0bf93c019428edb1c22e14.tar.gz | |
Merge branch 'cmake' into fork
Diffstat (limited to 'lib/gumbo-parser')
| -rw-r--r-- | lib/gumbo-parser/CMakeLists.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/gumbo-parser/CMakeLists.txt b/lib/gumbo-parser/CMakeLists.txt new file mode 100644 index 0000000..801316a --- /dev/null +++ b/lib/gumbo-parser/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.13) +project(gumbo-parser C) +set(sources + attribute.c + char_ref.c + error.c + gumbo-utf8.c + parser.c + string_buffer.c + string_piece.c + tag.c + tokenizer.c + util.c + vector.c +) +add_library(${PROJECT_NAME} ${sources}) +target_include_directories(${PROJECT_NAME} PUBLIC include PRIVATE .) |
