File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ find_package(TBB)
25
25
set (PROJECT_DEPS_DIR externals)
26
26
27
27
# Add executables.
28
- add_library (${PROJECT_NAME} SHARED
28
+ add_library (${PROJECT_NAME} STATIC
29
29
${CMAKE_CURRENT_SOURCE_DIR} /src/sssp.cpp
30
30
${CMAKE_CURRENT_SOURCE_DIR} /externals/mmio.cpp
31
31
)
Original file line number Diff line number Diff line change @@ -3,13 +3,8 @@ Single-Source Shortest Path (SSSP) implementation in modern C++ for 2022 IPDPS w
3
3
4
4
## Requirements
5
5
- ` C++20 ` for linux, ` C++23 ` for windows.
6
- - ` cmake ` version 22.3.3.
7
- - ` tbb ` library for execution policies.
8
-
9
- ```
10
- sudo apt update
11
- sudo apt install libtbb-dev
12
- ```
6
+ - ` cmake ` version 3.22.2.
7
+ - ` tbb ` library for execution policies (automatically fetched using cmake).
13
8
14
9
## Quick Start Guide
15
10
Before building this project, make sure your system/compiler supports ** C++20** and ** cmake** (see ` CMakeLists.txt ` for the version).
You can’t perform that action at this time.
0 commit comments