From 2c6d5fc16d84c3b8cb3e32beff0e466ee89f95e8 Mon Sep 17 00:00:00 2001 From: cmuhammedrafi Date: Wed, 28 Aug 2024 14:12:03 +0530 Subject: [PATCH] redirect --- .vscode/settings.json | 61 ------------------------- CMakeLists.txt | 2 +- unit_test.cmake => cmake/UnitTest.cmake | 0 3 files changed, 1 insertion(+), 62 deletions(-) delete mode 100644 .vscode/settings.json rename unit_test.cmake => cmake/UnitTest.cmake (100%) diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index b1f53e15..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "files.associations": { - "chrono": "cpp", - "array": "cpp", - "atomic": "cpp", - "bit": "cpp", - "*.tcc": "cpp", - "cctype": "cpp", - "clocale": "cpp", - "cmath": "cpp", - "compare": "cpp", - "concepts": "cpp", - "condition_variable": "cpp", - "cstdarg": "cpp", - "cstddef": "cpp", - "cstdint": "cpp", - "cstdio": "cpp", - "cstdlib": "cpp", - "cstring": "cpp", - "ctime": "cpp", - "cwchar": "cpp", - "cwctype": "cpp", - "deque": "cpp", - "map": "cpp", - "set": "cpp", - "string": "cpp", - "unordered_map": "cpp", - "vector": "cpp", - "exception": "cpp", - "algorithm": "cpp", - "functional": "cpp", - "iterator": "cpp", - "memory": "cpp", - "memory_resource": "cpp", - "numeric": "cpp", - "random": "cpp", - "ratio": "cpp", - "string_view": "cpp", - "system_error": "cpp", - "tuple": "cpp", - "type_traits": "cpp", - "utility": "cpp", - "fstream": "cpp", - "initializer_list": "cpp", - "iosfwd": "cpp", - "iostream": "cpp", - "istream": "cpp", - "limits": "cpp", - "mutex": "cpp", - "new": "cpp", - "numbers": "cpp", - "ostream": "cpp", - "semaphore": "cpp", - "sstream": "cpp", - "stdexcept": "cpp", - "stop_token": "cpp", - "streambuf": "cpp", - "thread": "cpp", - "typeinfo": "cpp" - } -} \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 2bc5ea04..c6801f4f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ find_package(IARMBus) endif () if(ENABLE_NETWORKMANAGER_UNIT_TEST) - include(unit_test.cmake) + include(UnitTest.cmake) endif() message("Setup ProxyStub for INetworkManager.h") diff --git a/unit_test.cmake b/cmake/UnitTest.cmake similarity index 100% rename from unit_test.cmake rename to cmake/UnitTest.cmake