Skip to content

Commit 7a90406

Browse files
committed
Switched to static lib, testing.
1 parent 9646ccd commit 7a90406

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ find_package(TBB)
2525
set(PROJECT_DEPS_DIR externals)
2626

2727
# Add executables.
28-
add_library(${PROJECT_NAME} SHARED
28+
add_library(${PROJECT_NAME} STATIC
2929
${CMAKE_CURRENT_SOURCE_DIR}/src/sssp.cpp
3030
${CMAKE_CURRENT_SOURCE_DIR}/externals/mmio.cpp
3131
)

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,8 @@ Single-Source Shortest Path (SSSP) implementation in modern C++ for 2022 IPDPS w
33

44
## Requirements
55
- `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).
138

149
## Quick Start Guide
1510
Before building this project, make sure your system/compiler supports **C++20** and **cmake** (see `CMakeLists.txt` for the version).

0 commit comments

Comments
 (0)