Skip to content

Commit

Permalink
Minor naming update
Browse files Browse the repository at this point in the history
  • Loading branch information
npanuhin committed Dec 8, 2024
1 parent 1b56de6 commit 38eeeca
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Test
name: Build and Tests

on:
push:
Expand All @@ -7,7 +7,7 @@ on:

jobs:
build-and-test:
name: Build and Test
name: Build and Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
12 changes: 6 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.29)
project(sdtmaps)
project(sdt-navigator)

add_definitions(-DPROJECT_ROOT_PATH="${CMAKE_SOURCE_DIR}")

Expand Down Expand Up @@ -34,25 +34,25 @@ include_directories(${CMAKE_SOURCE_DIR}/lib)
FILE(GLOB Models models/src/*.cpp)

# Main programm
add_executable(sdtmaps ${Models} core/src/pathfinder.cpp app/main.cpp)
target_link_libraries(sdtmaps
add_executable(sdt-navigator ${Models} core/src/pathfinder.cpp app/main.cpp)
target_link_libraries(sdt-navigator
Qt::Core
rapidjson
)

# Tests
add_executable(sdtmaps_test
add_executable(sdt-navigator_test
${Models}
core/src/pathfinder.cpp
test/main.cpp
test/util.cpp
test/test-data/minsk-subway.cpp)
target_link_libraries(sdtmaps_test
target_link_libraries(sdt-navigator_test
Qt::Core
rapidjson
doctest
)

# CTest
enable_testing()
add_test(NAME test COMMAND sdtmaps_test)
add_test(NAME test COMMAND sdt-navigator_test)
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<h1 align="center">Multimodal Navigation System</h1>
<h6 align="center">Final project for the Advanced Algorithms and Data Structures course at Constructor University</h6>
<h1 align="center">SDT Navigator</h1>
<h6 align="center">
<a href="https://docs.google.com/presentation/d/e/2PACX-1vQNlbyWFmbQOSK8aOKznbCmE7JXFppdAYH7fN8-1sdmeVfJIxTH9R3RguKPvG3DqfPTjmCuY1mOAvj4/pub">Final project for the Advanced Algorithms and Data Structures course at Constructor University</a>
</h6>


## Setup

Expand Down Expand Up @@ -45,7 +48,7 @@ Running the project consists of two steps:
2. TODO: ещё не понятно, что запускать
<!-- 2. Now we run the main program:
```bash
./build/sdtmaps
./build/sdt-navigator
``` -->

## Testing
Expand Down

0 comments on commit 38eeeca

Please sign in to comment.