From 1c9cbb207b27891254e89f5ee3200738fc53213a Mon Sep 17 00:00:00 2001 From: kalle Date: Sun, 15 Nov 2020 16:48:51 +0100 Subject: [PATCH] Update .gitignore and make the executable name lower case. --- .gitignore | 1 + CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ae6b19c..e8e0af0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /cmake-build-debug/ +/cmake-build/ /.idea/ \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 11ab6e7..7923ee0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,6 +15,6 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall") find_package(Qt5 REQUIRED COMPONENTS Widgets) -add_executable(Timer src/main.cpp src/MainWindow.cpp src/MainWindow.h src/TimerThread.cpp src/TimerThread.h src/Structs.h src/config.h) +add_executable(timer src/main.cpp src/MainWindow.cpp src/MainWindow.h src/TimerThread.cpp src/TimerThread.h src/Structs.h src/config.h) -target_link_libraries(Timer Qt5::Widgets) \ No newline at end of file +target_link_libraries(timer Qt5::Widgets) \ No newline at end of file