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 @@ -36,6 +36,5 @@ jobs:
-DSOURCEMETA_CORE_HTML:BOOL=OFF
-DSOURCEMETA_CORE_EXTENSION_ALTERSCHEMA:BOOL=OFF
-DSOURCEMETA_CORE_EXTENSION_EDITORSCHEMA:BOOL=OFF
-DSOURCEMETA_CORE_EXTENSION_BUILD: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 @@ -46,7 +46,6 @@ jobs:
-DSOURCEMETA_CORE_HTML:BOOL=OFF
-DSOURCEMETA_CORE_EXTENSION_ALTERSCHEMA:BOOL=OFF
-DSOURCEMETA_CORE_EXTENSION_EDITORSCHEMA:BOOL=OFF
-DSOURCEMETA_CORE_EXTENSION_BUILD: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 @@ -24,7 +24,6 @@ option(SOURCEMETA_CORE_YAML "Build the Sourcemeta Core YAML library" ON)
option(SOURCEMETA_CORE_HTML "Build the Sourcemeta Core HTML library" ON)
option(SOURCEMETA_CORE_EXTENSION_ALTERSCHEMA "Build the Sourcemeta Core AlterSchema library" ON)
option(SOURCEMETA_CORE_EXTENSION_EDITORSCHEMA "Build the Sourcemeta Core EditorSchema library" ON)
option(SOURCEMETA_CORE_EXTENSION_BUILD "Build the Sourcemeta Core Build 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 @@ -144,10 +143,6 @@ if(SOURCEMETA_CORE_EXTENSION_EDITORSCHEMA)
add_subdirectory(src/extension/editorschema)
endif()

if(SOURCEMETA_CORE_EXTENSION_BUILD)
add_subdirectory(src/extension/build)
endif()

if(SOURCEMETA_CORE_ADDRESS_SANITIZER)
sourcemeta_sanitizer(TYPE address)
elseif(SOURCEMETA_CORE_UNDEFINED_SANITIZER)
Expand Down Expand Up @@ -259,10 +254,6 @@ if(SOURCEMETA_CORE_TESTS)
add_subdirectory(test/editorschema)
endif()

if(SOURCEMETA_CORE_EXTENSION_BUILD)
add_subdirectory(test/build)
endif()

if(PROJECT_IS_TOP_LEVEL)
# Otherwise we need the child project to link
# against the sanitizers too.
Expand Down
4 changes: 0 additions & 4 deletions config.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ if(NOT SOURCEMETA_CORE_COMPONENTS)
list(APPEND SOURCEMETA_CORE_COMPONENTS alterschema)
list(APPEND SOURCEMETA_CORE_COMPONENTS editorschema)
list(APPEND SOURCEMETA_CORE_COMPONENTS options)
list(APPEND SOURCEMETA_CORE_COMPONENTS build)
endif()

include(CMakeFindDependencyMacro)
Expand Down Expand Up @@ -116,9 +115,6 @@ foreach(component ${SOURCEMETA_CORE_COMPONENTS})
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_editorschema.cmake")
elseif(component STREQUAL "options")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_options.cmake")
elseif(component STREQUAL "build")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_io.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/sourcemeta_core_build.cmake")
else()
message(FATAL_ERROR "Unknown Sourcemeta Core component: ${component}")
endif()
Expand Down
8 changes: 0 additions & 8 deletions src/extension/build/CMakeLists.txt

This file was deleted.

114 changes: 0 additions & 114 deletions src/extension/build/adapter_filesystem.cc

This file was deleted.

106 changes: 0 additions & 106 deletions src/extension/build/include/sourcemeta/core/build.h

This file was deleted.

This file was deleted.

26 changes: 0 additions & 26 deletions src/extension/build/include/sourcemeta/core/build_types.h

This file was deleted.

12 changes: 0 additions & 12 deletions test/build/CMakeLists.txt

This file was deleted.

Loading