Skip to content

Commit

Permalink
no need for argparse
Browse files Browse the repository at this point in the history
  • Loading branch information
jevinskie committed Mar 30, 2024
1 parent 12ebc82 commit 488c76e
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

1 change: 0 additions & 1 deletion 3rdparty/argparse
Submodule argparse deleted from a1c41c
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ project(

include(cmake/variables.cmake)

add_subdirectory(3rdparty/argparse EXCLUDE_FROM_ALL)
add_subdirectory(lib)
add_subdirectory(tool)
if(BUILD_TESTING)
Expand Down
2 changes: 1 addition & 1 deletion tool/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ add_executable(redirect-to-os-log redirect-to-os-log.cpp)
target_compile_features(redirect-to-os-log PRIVATE cxx_std_20)
set_target_properties(redirect-to-os-log PROPERTIES CXX_EXTENSIONS ON)
target_compile_options(redirect-to-os-log PRIVATE -Wall -Wextra -Wpedantic -Wno-nullability-extension -Wno-gnu-line-marker)
target_link_libraries(redirect-to-os-log PRIVATE argparse redirect-to-os-log-lib)
target_link_libraries(redirect-to-os-log PRIVATE redirect-to-os-log-lib)
2 changes: 1 addition & 1 deletion tool/redirect-to-os-log.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#include <argparse/argparse.hpp>
#include <redirect-to-os-log/redirect-to-os-log.hpp>

#include <cerrno>
Expand All @@ -7,6 +6,7 @@
#include <cstdlib>
#include <cstring>
#include <filesystem>
#include <optional>
#include <sstream>
#include <sys/stat.h>
#include <system_error>
Expand Down

0 comments on commit 488c76e

Please sign in to comment.