Skip to content

Commit 39a282e

Browse files
committed
WIP
1 parent ba2d289 commit 39a282e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+15761
-493
lines changed

CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ target_include_directories(cmcpp INTERFACE
2525

2626
target_compile_features(cmcpp INTERFACE cxx_std_20)
2727

28+
# Enable testing early so subdirectories (including samples) can register tests
29+
if (BUILD_TESTING)
30+
enable_testing()
31+
endif()
32+
2833
if (BUILD_SAMPLES AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/samples/CMakeLists.txt")
2934
if (NOT DEFINED WASI_SDK_PREFIX OR WASI_SDK_PREFIX STREQUAL "")
3035
set(_wasi_sdk_candidates)
@@ -56,7 +61,6 @@ if (WIT_CODEGEN AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/grammar/CMakeLists.txt")
5661
endif()
5762

5863
if (BUILD_TESTING AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/test/CMakeLists.txt")
59-
enable_testing()
6064
add_subdirectory(test)
6165
endif()
6266

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@
33
[![Ubuntu](https://github.com/GordonSmith/component-model-cpp/actions/workflows/ubuntu.yml/badge.svg)](https://github.com/GordonSmith/component-model-cpp/actions/workflows/ubuntu.yml)
44
[![codecov](https://codecov.io/gh/GordonSmith/component-model-cpp/graph/badge.svg?token=CORP310T92)](https://codecov.io/gh/GordonSmith/component-model-cpp)
55

6-
> [!WARNING]
7-
> **⚠️ 🚧 DOCUMENTATION UNDER CONSTRUCTION 🚧 ⚠️**
8-
>
9-
> **The documentation is being reorganized and expanded.** Expect incomplete sections, placeholders, and frequent updates as we improve coverage and organization.
10-
116
<p align="center">
127
<img src="https://github.com/WebAssembly/WASI/blob/main/WASI.png?raw=true" height="160" width="auto" />
138
<img src="https://repository-images.githubusercontent.com/254842585/4dfa7580-7ffb-11ea-99d0-46b8fe2f4170" height="160" width="auto" />
@@ -19,7 +14,12 @@ This repository provides a header-only C++20 implementation of the WebAssembly C
1914

2015
## Official Documentation, Issues, and Discussions
2116

22-
⚠️ 🚧 DOCUMENTATION UNDER CONSTRUCTION 🚧 ⚠️
17+
18+
> [!WARNING]
19+
> **⚠️ 🚧 DOCUMENTATION UNDER CONSTRUCTION 🚧 ⚠️**
20+
>
21+
> **The documentation is being reorganized and expanded.** Expect incomplete sections, placeholders, and frequent updates as we improve coverage and organization.
22+
2323
* [Official Documentation](https://GordonSmith.github.io/component-model-cpp/)
2424
* [GitHub Issues](https://github.com/GordonSmith/component-model-cpp/issues)
2525
* [GitHub Discussions](https://github.com/GordonSmith/component-model-cpp/discussions)

0 commit comments

Comments
 (0)