Skip to content

Commit d0c229c

Browse files
Fixed syntax
1 parent 3588bfc commit d0c229c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/linux.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
sudo apt update
5454
sudo apt install -y ninja-build ${{ matrix.additional-dep }}
5555
- name: Make sure the library compiles with Conan
56-
run: conan build . --build=missing -s compiler.cppstd=gnu20 -o &:with_cbor=True -o &:with_flatbuffers=True -o &:with_msgpack=True -o &:with_toml=True -o &:with_ubjson=True -o &:with_xml=True -o &:with_yaml=True
56+
run: conan build . --build=missing -s compiler.cppstd=gnu20 -o *:with_cbor=True -o *:with_flatbuffers=True -o *:with_msgpack=True -o *:with_toml=True -o *:with_ubjson=True -o *:with_xml=True -o *:with_yaml=True
5757
- name: Compile
5858
run: |
5959
if [[ "${{ matrix.compiler }}" == "llvm" ]]; then

.github/workflows/macos-clang.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
env:
4545
CC: clang
4646
CXX: clang++
47-
run: conan build . --build=missing -s compiler.cppstd=gnu20 -o &:with_cbor=True -o &:with_flatbuffers=True -o &:with_msgpack=True -o &:with_toml=True -o &:with_ubjson=True -o &:with_xml=True -o &:with_yaml=True
47+
run: conan build . --build=missing -s compiler.cppstd=gnu20 -o *:with_cbor=True -o *:with_flatbuffers=True -o *:with_msgpack=True -o *:with_toml=True -o *:with_ubjson=True -o *:with_xml=True -o *:with_yaml=True
4848
- name: Compile
4949
env:
5050
CC: clang

.github/workflows/windows-msvc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Create default profile
2929
run: conan profile detect
3030
- name: Make sure the library compiles with Conan
31-
run: conan build . --build=missing -s compiler.cppstd=gnu20 -o &:with_cbor=True -o &:with_flatbuffers=True -o &:with_msgpack=True -o &:with_toml=True -o &:with_ubjson=True -o &:with_xml=True -o &:with_yaml=True
31+
run: conan build . --build=missing -s compiler.cppstd=gnu20 -o *:with_cbor=True -o *:with_flatbuffers=True -o *:with_msgpack=True -o *:with_toml=True -o *:with_ubjson=True -o *:with_xml=True -o *:with_yaml=True
3232
- name: Compile
3333
run: |
3434
cmake -S . -B build -DREFLECTCPP_BUILD_TESTS=ON -DREFLECTCPP_BUILD_BENCHMARKS=ON -DREFLECTCPP_BSON=ON -DREFLECTCPP_CBOR=ON -DREFLECTCPP_FLEXBUFFERS=ON -DREFLECTCPP_MSGPACK=ON -DREFLECTCPP_XML=ON -DREFLECTCPP_TOML=ON -DREFLECTCPP_YAML=ON -DCMAKE_BUILD_TYPE=Release

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,5 @@ You can call `conan inspect .` to get an overview of the supported options.
9393
So, if you want XML and YAML support as well, you can call the following:
9494

9595
```bash
96-
conan build . --build=missing -s compiler.cppstd=gnu20 -o &:with_xml=True -o &:with_yaml=True
96+
conan build . --build=missing -s compiler.cppstd=gnu20 -o *:with_xml=True -o *:with_yaml=True
9797
```

0 commit comments

Comments
 (0)