Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ add_library(wf4-galois::wf4-galois ALIAS wf4-galois)

add_subdirectory(microbench)
add_subdirectory(scripts)
add_subdirectory(betweennesscentrality)
add_subdirectory(wf4)

# tests
Expand Down
11 changes: 11 additions & 0 deletions betweennesscentrality/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# SPDX-License-Identifier: BSD-2-Clause
# Copyright (c) 2023. University of Texas at Austin. All rights reserved.

set(sources
bc_mr.cpp
)

add_executable(bc_mr)
target_sources(bc_mr PRIVATE ${sources})
target_include_directories(bc_mr PRIVATE ${CMAKE_CURRENT_LIST_DIR}/include ${PHMAP_DIRECTORY} ${PCG_DIRECTORY} ${graph-log-sketch_SOURCE_DIR}/include)
target_link_libraries(bc_mr PRIVATE Galois::cusp Galois::dist_async Galois::gluon Galois::wmd)
Loading