File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ option(NM_NG_BUILD_WITH_UBSAN "Build with Undefined Behavior Sanitizer (only f
2323
2424set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wall -Wextra -Wunused -Wconversion -Wsign-conversion" )
2525set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -Werror" )
26- set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g -ggdb3" )
26+ set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g -ggdb3 -fsanitize=address " )
2727
2828if (NM_NG_BUILD_WITH_ASAN)
2929 set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=address -fsanitize-recover=address" )
Original file line number Diff line number Diff line change 11add_subdirectory (sampler )
22add_subdirectory (telemetry )
3+ add_subdirectory (deduplicator )
Original file line number Diff line number Diff line change 1+ add_executable (deduplicator
2+ main.cpp
3+ deduplicator.cpp
4+ )
5+
6+ target_link_libraries (deduplicator PRIVATE
7+ telemetry::telemetry
8+ telemetry::appFs
9+ common
10+ rapidcsv
11+ unirec::unirec++
12+ unirec::unirec
13+ trap::trap
14+ argparse
15+ xxhash
16+ )
17+
18+ install (TARGETS deduplicator DESTINATION ${INSTALL_DIR_BIN} )
You can’t perform that action at this time.
0 commit comments