Update .gitignore and make the executable name lower case.

master
kalle 2020-11-15 16:48:51 +01:00
parent 9cd74786e9
commit 1c9cbb207b
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/cmake-build-debug/
/cmake-build/
/.idea/

View File

@ -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)
target_link_libraries(timer Qt5::Widgets)