aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml4
-rw-r--r--CMakeLists.txt8
-rw-r--r--README.md2
3 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b704b3b9..9b9383db 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -179,11 +179,11 @@ jobs:
if: matrix.update-api
working-directory: ${{ runner.workspace }}
run: |
- git clone https://github.com/matrix-org/matrix-doc.git
+ git clone https://github.com/quotient-im/matrix-spec.git
git clone --recursive https://github.com/KitsuneRal/gtad.git
cmake -S gtad -B build/gtad $CMAKE_ARGS -DBUILD_SHARED_LIBS=OFF
cmake --build build/gtad
- echo "CMAKE_ARGS=$CMAKE_ARGS -DMATRIX_DOC_PATH=${{ runner.workspace }}/matrix-doc \
+ echo "CMAKE_ARGS=$CMAKE_ARGS -DMATRIX_SPEC_PATH=${{ runner.workspace }}/matrix-spec \
-DGTAD_PATH=${{ runner.workspace }}/build/gtad/gtad" \
>>$GITHUB_ENV
echo "QUOTEST_ORIGIN=$QUOTEST_ORIGIN with API files regeneration" >>$GITHUB_ENV
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 404ba87c..e3415816 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -198,20 +198,20 @@ set(ASAPI_DEF_DIR application-service/definitions)
set(ISAPI_DEF_DIR identity/definitions)
set(API_GENERATION_ENABLED 0)
-if (GTAD_PATH AND MATRIX_DOC_PATH)
+if (GTAD_PATH AND MATRIX_SPEC_PATH)
# REALPATH resolves ~ (home directory) while PROGRAM doesn't
get_filename_component(ABS_GTAD_PATH "${GTAD_PATH}" REALPATH)
get_filename_component(ABS_GTAD_PATH "${ABS_GTAD_PATH}" PROGRAM PROGRAM_ARGS GTAD_ARGS)
if (EXISTS ${ABS_GTAD_PATH})
- get_filename_component(ABS_API_DEF_PATH "${MATRIX_DOC_PATH}/data/api" REALPATH)
+ get_filename_component(ABS_API_DEF_PATH "${MATRIX_SPEC_PATH}/data/api" REALPATH)
if (NOT IS_DIRECTORY ${ABS_API_DEF_PATH})
# Check the old place of API files
- get_filename_component(ABS_API_DEF_PATH "${MATRIX_DOC_PATH}/api" REALPATH)
+ get_filename_component(ABS_API_DEF_PATH "${MATRIX_SPEC_PATH}/api" REALPATH)
endif ()
if (IS_DIRECTORY ${ABS_API_DEF_PATH})
set(API_GENERATION_ENABLED 1)
else ()
- message( WARNING "${MATRIX_DOC_PATH} doesn't seem to point to a valid matrix-doc repo; disabling API stubs generation")
+ message( WARNING "${MATRIX_SPEC_PATH} doesn't seem to point to a valid matrix-doc repo; disabling API stubs generation")
endif ()
else (EXISTS ${ABS_GTAD_PATH})
message( WARNING "${GTAD_PATH} is not executable; disabling API stubs generation")
diff --git a/README.md b/README.md
index f2bfcb9e..15f1fcd7 100644
--- a/README.md
+++ b/README.md
@@ -143,7 +143,7 @@ the standard variables coming with CMake. On top of them, Quotient introduces:
Quotient and Quotient-dependent (if it uses `find_package(Quotient 0.6)`)
code; so you can use `#ifdef Quotient_E2EE_ENABLED` to guard the code using
E2EE parts of Quotient.
-- `MATRIX_DOC_PATH` and `GTAD_PATH` - these two variables are used to point
+- `MATRIX_SPEC_PATH` and `GTAD_PATH` - these two variables are used to point
CMake to the directory with the matrix-doc repository containing API files
and to a GTAD binary. These two are used to generate C++ files from Matrix
Client-Server API description made in OpenAPI notation. This is not needed