about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-09-24 09:41:40 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2024-09-24 09:41:40 -0400
commita3d5e37e923acd2dcc8da4e56916a4feaebcb1ba (patch)
tree506276bab3e501dd201e9c3574cabd619e781a82
parent738d970d26794db8bb3dcf459c4a787b624910ba (diff)
downloadlingo-ap-tracker-a3d5e37e923acd2dcc8da4e56916a4feaebcb1ba.tar.gz
lingo-ap-tracker-a3d5e37e923acd2dcc8da4e56916a4feaebcb1ba.tar.bz2
lingo-ap-tracker-a3d5e37e923acd2dcc8da4e56916a4feaebcb1ba.zip
Added missing EOF newlines
-rw-r--r--CMakeLists.txt2
-rw-r--r--README.md2
-rw-r--r--src/network_set.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b168f5b..4eef9d8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -63,4 +63,4 @@ add_custom_target(copy_assets ALL
63 COMMENT "Copying folder from ${SRC_DIR} to ${DST_DIR}" 63 COMMENT "Copying folder from ${SRC_DIR} to ${DST_DIR}"
64) 64)
65 65
66add_dependencies(lingo_ap_tracker copy_assets) \ No newline at end of file 66add_dependencies(lingo_ap_tracker copy_assets)
diff --git a/README.md b/README.md index 1e9b2a5..f03e960 100644 --- a/README.md +++ b/README.md
@@ -20,4 +20,4 @@ To build the app:
203. Put [ids.yaml from archipelago](https://github.com/ArchipelagoMW/Archipelago/raw/main/worlds/lingo/data/ids.yaml) in ./assets 203. Put [ids.yaml from archipelago](https://github.com/ArchipelagoMW/Archipelago/raw/main/worlds/lingo/data/ids.yaml) in ./assets
214. Configure the project: `cmake --preset=lingo-ap-tracker-preset` 214. Configure the project: `cmake --preset=lingo-ap-tracker-preset`
225. Build the application in debug mode: `cmake --build --preset=lingo-ap-tracker-preset` 225. Build the application in debug mode: `cmake --build --preset=lingo-ap-tracker-preset`
236. (Optional) Build the application in release mode: `cmake --build --preset=x64-release-preset` \ No newline at end of file 236. (Optional) Build the application in release mode: `cmake --build --preset=x64-release-preset`
diff --git a/src/network_set.cpp b/src/network_set.cpp index c7639ad..45911e3 100644 --- a/src/network_set.cpp +++ b/src/network_set.cpp
@@ -49,4 +49,4 @@ bool NetworkNode::operator<(const NetworkNode& rhs) const {
49 if (exit != rhs.exit) return exit < rhs.exit; 49 if (exit != rhs.exit) return exit < rhs.exit;
50 if (two_way != rhs.two_way) return two_way < rhs.two_way; 50 if (two_way != rhs.two_way) return two_way < rhs.two_way;
51 return false; 51 return false;
52} \ No newline at end of file 52}