[Chore] (MG_Test): move library finding to parent CMakeList and link libraries to all the test targets

This commit is contained in:
2025-08-11 12:52:44 +08:00
parent 1ca0a96628
commit 99a8726506
5 changed files with 132 additions and 53 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <gtest/gtest.h>
#include "Includes.h"
using namespace MobileGL;
class ProgramTest : public ::testing::Test {
protected:
};
TEST_F(ProgramTest, Sanity) {
ASSERT_TRUE(true);
}