From 80afdc06f7daae901644f14b23e55012f302c03e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Mon, 8 Jan 2024 00:55:16 +0100 Subject: [PATCH] Remove unneeded argparse module --- .gitmodules | 5 ----- CMakeLists.txt | 1 - lib/argparse | 1 - tests/CMakeLists.txt | 1 - 4 files changed, 8 deletions(-) delete mode 160000 lib/argparse diff --git a/.gitmodules b/.gitmodules index 57c8e07..0912fa4 100644 --- a/.gitmodules +++ b/.gitmodules @@ -8,11 +8,6 @@ main = v2.x update = merge url = https://github.com/catchorg/Catch2.git -[submodule "lib/argparse"] - path = lib/argparse - url = https://github.com/p-ranav/argparse - master = master - update = merge [submodule "lib/json"] path = lib/json url = https://github.com/nlohmann/json.git diff --git a/CMakeLists.txt b/CMakeLists.txt index fc89da2..92c3294 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,7 +52,6 @@ endif (ENABLE_CLANG_TIDY) # --------------------------------------------- # include(FetchContent) add_git_submodule("lib/mdlp") -add_git_submodule("lib/argparse") add_git_submodule("lib/json") # Subdirectories diff --git a/lib/argparse b/lib/argparse deleted file mode 160000 index 69dabd8..0000000 --- a/lib/argparse +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 69dabd88a8e6680b1a1a18397eb3e165e4019ce6 diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index bcfdc4e..fca574b 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -7,7 +7,6 @@ if(ENABLE_TESTING) ${BayesNet_SOURCE_DIR}/lib/mdlp ${BayesNet_SOURCE_DIR}/lib/folding ${BayesNet_SOURCE_DIR}/lib/json/include - ${BayesNet_SOURCE_DIR}/lib/argparse/include ${CMAKE_BINARY_DIR}/configured_files/include ) set(TEST_SOURCES_BAYESNET TestBayesModels.cc TestBayesNetwork.cc TestBayesMetrics.cc TestUtils.cc ${BayesNet_SOURCES})