summaryrefslogtreecommitdiff
path: root/app/CMakeLists.txt
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2024-07-16 16:20:47 +0200
committerFelix Morgner <felix.morgner@gmail.com>2024-07-16 16:20:47 +0200
commit1a83168d5c7269bd91043d79169898ca6893d88a (patch)
treebc85864b15f61ad1c77fae40beb5d7bc5762a657 /app/CMakeLists.txt
parent92fc3900c9d3084dd4d0d2386ab4d823e356da20 (diff)
downloadturns-1a83168d5c7269bd91043d79169898ca6893d88a.tar.xz
turns-1a83168d5c7269bd91043d79169898ca6893d88a.zip
app: rename main window to tracker
Diffstat (limited to 'app/CMakeLists.txt')
-rw-r--r--app/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt
index eb426ca..0514383 100644
--- a/app/CMakeLists.txt
+++ b/app/CMakeLists.txt
@@ -4,8 +4,8 @@ add_library("app"
"src/application.cpp"
"src/widgets/participant_row.cpp"
"src/widgets/turn_order_view.cpp"
- "src/windows/main.cpp"
"src/windows/participant_editor.cpp"
+ "src/windows/tracker.cpp"
)
add_library("turns::app" ALIAS "app")
@@ -41,7 +41,7 @@ target_link_libraries("app" PUBLIC
# Application
add_executable("exe"
- "src/turns.cpp"
+ "src/main.cpp"
)
target_link_libraries("exe" PRIVATE
@@ -69,8 +69,8 @@ install(FILES
add_executable("app-tests"
"tests/widgets/participant_row.cpp"
- "tests/windows/main.cpp"
"tests/windows/participant_editor.cpp"
+ "tests/windows/tracker.cpp"
)
target_link_libraries("app-tests" PRIVATE