From 5b55b5c4983caeef039ed9f24d7c75e2b6602363 Mon Sep 17 00:00:00 2001 From: tzijnge Date: Thu, 17 Oct 2024 12:46:15 +0200 Subject: [PATCH] #24 Use PyProject.toml * Update .gitignore * Update cmake --- .github/workflows/cmake.yml | 4 ++-- .gitignore | 3 ++- CMakeLists.txt | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index b6a8ea5..d4f3e10 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -45,8 +45,8 @@ jobs: working-directory: package run: pip install . - - name: Run lotusrpc - run: lotusrpc --help + - name: Run lotusrpc generator + run: lrpcg --help - name: Run LRPC client CLI run: lrpcc --help diff --git a/.gitignore b/.gitignore index fa47ba6..262d80b 100644 --- a/.gitignore +++ b/.gitignore @@ -33,4 +33,5 @@ build .vscode **/__pycache__/**/*.* -/language/cpp/tests/generated +/tests/cpp/generated +/VENV diff --git a/CMakeLists.txt b/CMakeLists.txt index e8514e1..7e43826 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ cmake_minimum_required(VERSION 3.0.0) enable_testing() -add_subdirectory(language/cpp/tests) \ No newline at end of file +add_subdirectory(tests/cpp) \ No newline at end of file