From e6b30031bc6efd1f7c9958c8f147bb3e0adf8599 Mon Sep 17 00:00:00 2001 From: yixy-only Date: Sun, 1 Dec 2024 14:58:22 +0800 Subject: [PATCH] build: change the name of test target --- .vscode/tasks.json | 8 ++++---- CMakeLists.txt | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index a1fa6a26..30db3c7d 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -121,7 +121,7 @@ "problemMatcher": "$gcc" }, { - "label": "Run Demo - GraphicsTest", + "label": "Run Demo - XEGE Test", "type": "shell", "command": "bash", "args": [ @@ -129,10 +129,10 @@ "tasks.sh", "--debug", "--target", - "graphicstest", + "xege_test", "--build", "--run", - "graphicstest.exe", + "xege_test.exe" ], "options": { "cwd": "${workspaceFolder}" @@ -141,4 +141,4 @@ "problemMatcher": "$gcc" } ] -} \ No newline at end of file +} diff --git a/CMakeLists.txt b/CMakeLists.txt index dcccf46a..4c98cfc8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -188,7 +188,7 @@ endmacro() # 编译测试 if (EGE_BUILD_TEST) - ege_add_executable(graphicstest test/src/maintest.cpp) + ege_add_executable(xege_test test/src/maintest.cpp) endif() add_subdirectory(src)