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)