Skip to content

Commit

Permalink
Remove dumpCharBitSets.cpp tool
Browse files Browse the repository at this point in the history
  • Loading branch information
rmisev committed Sep 26, 2024
1 parent e1a0263 commit 850adef
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 67 deletions.
11 changes: 1 addition & 10 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ option(UPA_BUILD_BENCH "Build the Upa URL benchmarks." OFF)
option(UPA_BUILD_FUZZER "Build the Upa URL fuzzer." OFF)
option(UPA_BUILD_EXAMPLES "Build the Upa URL examples." OFF)
option(UPA_BUILD_EXTRACTED "Build Upa URL examples extracted from the docs." OFF)
option(UPA_BUILD_TOOLS "Build tools." OFF)
option(UPA_INSTALL "Generate the install target." ON)
# library options
option(UPA_AMALGAMATED "Use amalgamated URL library source." OFF)
Expand Down Expand Up @@ -113,7 +112,7 @@ include_directories(deps)

# Is the Upa URL library needed?
if (UPA_BUILD_TESTS OR UPA_BUILD_BENCH OR UPA_BUILD_FUZZER OR UPA_BUILD_EXAMPLES OR
UPA_BUILD_EXTRACTED OR UPA_INSTALL OR NOT UPA_BUILD_TOOLS)
UPA_BUILD_EXTRACTED OR UPA_INSTALL)
if (UPA_AMALGAMATED)
add_library(${upa_lib_target} STATIC
single_include/upa/url.cpp)
Expand Down Expand Up @@ -224,14 +223,6 @@ if (UPA_BUILD_EXTRACTED)
add_subdirectory(examples/extracted-cpp)
endif()

# Tool's targets

if (UPA_BUILD_TOOLS)
add_executable(dumpCharBitSets tools/dumpCharBitSets.cpp)
set_property(TARGET dumpCharBitSets PROPERTY CXX_STANDARD 17)
target_include_directories(dumpCharBitSets PRIVATE include)
endif()

# Install

if (UPA_INSTALL AND NOT UPA_AMALGAMATED)
Expand Down
57 changes: 0 additions & 57 deletions tools/dumpCharBitSets.cpp

This file was deleted.

0 comments on commit 850adef

Please sign in to comment.