Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/website-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,5 @@ jobs:
-DSOURCEMETA_CORE_GZIP:BOOL=OFF
-DSOURCEMETA_CORE_HTML:BOOL=OFF
-DSOURCEMETA_CORE_MARKDOWN:BOOL=OFF
-DSOURCEMETA_CORE_EXTENSION_EDITORSCHEMA:BOOL=OFF
-DSOURCEMETA_CORE_DOCS:BOOL=ON
- run: cmake --build ./build --config Release --target doxygen
1 change: 0 additions & 1 deletion .github/workflows/website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ jobs:
-DSOURCEMETA_CORE_GZIP:BOOL=OFF
-DSOURCEMETA_CORE_HTML:BOOL=OFF
-DSOURCEMETA_CORE_MARKDOWN:BOOL=OFF
-DSOURCEMETA_CORE_EXTENSION_EDITORSCHEMA:BOOL=OFF
-DSOURCEMETA_CORE_DOCS:BOOL=ON
- run: cmake --build ./build --config Release --target doxygen
- name: Setup Pages
Expand Down
9 changes: 0 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ option(SOURCEMETA_CORE_SEMVER "Build the Sourcemeta Core SemVer library" ON)
option(SOURCEMETA_CORE_GZIP "Build the Sourcemeta Core GZIP library" ON)
option(SOURCEMETA_CORE_HTML "Build the Sourcemeta Core HTML library" ON)
option(SOURCEMETA_CORE_MARKDOWN "Build the Sourcemeta Core Markdown library" ON)
option(SOURCEMETA_CORE_EXTENSION_EDITORSCHEMA "Build the Sourcemeta Core EditorSchema library" ON)
option(SOURCEMETA_CORE_TESTS "Build the Sourcemeta Core tests" OFF)
option(SOURCEMETA_CORE_BENCHMARK "Build the Sourcemeta Core benchmarks" OFF)
option(SOURCEMETA_CORE_DOCS "Build the Sourcemeta Core docs" OFF)
Expand Down Expand Up @@ -182,10 +181,6 @@ if(SOURCEMETA_CORE_MARKDOWN)
add_subdirectory(src/core/markdown)
endif()

if(SOURCEMETA_CORE_EXTENSION_EDITORSCHEMA)
add_subdirectory(src/extension/editorschema)
endif()

if(SOURCEMETA_CORE_ADDRESS_SANITIZER)
sourcemeta_sanitizer(TYPE address)
elseif(SOURCEMETA_CORE_UNDEFINED_SANITIZER)
Expand Down Expand Up @@ -321,10 +316,6 @@ if(SOURCEMETA_CORE_TESTS)
add_subdirectory(test/markdown)
endif()

if(SOURCEMETA_CORE_EXTENSION_EDITORSCHEMA)
add_subdirectory(test/editorschema)
endif()

if(PROJECT_IS_TOP_LEVEL)
# Otherwise we need the child project to link
# against the sanitizers too.
Expand Down
9 changes: 0 additions & 9 deletions benchmark/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ if(SOURCEMETA_CORE_JSONSCHEMA)
list(APPEND BENCHMARK_SOURCES jsonschema.cc)
endif()

if(SOURCEMETA_CORE_EXTENSION_EDITORSCHEMA)
list(APPEND BENCHMARK_SOURCES editorschema.cc)
endif()

if(SOURCEMETA_CORE_URITEMPLATE)
list(APPEND BENCHMARK_SOURCES uritemplate.cc)
endif()
Expand Down Expand Up @@ -62,11 +58,6 @@ if(BENCHMARK_SOURCES)
PRIVATE sourcemeta::core::jsonschema)
endif()

if(SOURCEMETA_CORE_EXTENSION_EDITORSCHEMA)
target_link_libraries(sourcemeta_core_benchmark
PRIVATE sourcemeta::core::editorschema)
endif()

if(SOURCEMETA_CORE_URITEMPLATE)
target_link_libraries(sourcemeta_core_benchmark
PRIVATE sourcemeta::core::uritemplate)
Expand Down
22 changes: 0 additions & 22 deletions benchmark/editorschema.cc

This file was deleted.

11 changes: 0 additions & 11 deletions config.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ if(NOT SOURCEMETA_CORE_COMPONENTS)
list(APPEND SOURCEMETA_CORE_COMPONENTS gzip)
list(APPEND SOURCEMETA_CORE_COMPONENTS html)
list(APPEND SOURCEMETA_CORE_COMPONENTS markdown)
list(APPEND SOURCEMETA_CORE_COMPONENTS editorschema)
list(APPEND SOURCEMETA_CORE_COMPONENTS error)
list(APPEND SOURCEMETA_CORE_COMPONENTS options)
endif()
Expand Down Expand Up @@ -143,16 +142,6 @@ foreach(component ${SOURCEMETA_CORE_COMPONENTS})
elseif(component STREQUAL "markdown")
find_dependency(cmark_gfm CONFIG)
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_markdown.cmake")
elseif(component STREQUAL "editorschema")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_ip.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_uri.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_numeric.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_io.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_unicode.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_json.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_jsonpointer.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_jsonschema.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_editorschema.cmake")
elseif(component STREQUAL "error")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_error.cmake")
elseif(component STREQUAL "options")
Expand Down
8 changes: 0 additions & 8 deletions src/extension/editorschema/CMakeLists.txt

This file was deleted.

203 changes: 0 additions & 203 deletions src/extension/editorschema/editorschema.cc

This file was deleted.

60 changes: 0 additions & 60 deletions src/extension/editorschema/include/sourcemeta/core/editorschema.h

This file was deleted.

9 changes: 0 additions & 9 deletions test/editorschema/CMakeLists.txt

This file was deleted.

Loading
Loading