From f384d4aa08fa531b09219391d28d0e36c610453f Mon Sep 17 00:00:00 2001 From: Patricia Aas Date: Sun, 29 Nov 2020 19:28:42 +0100 Subject: [PATCH] Whitespace cleanup --- lcd/test/lcd_tests.cpp | 2 +- pacman/CMakeLists.txt | 2 +- pacman/lib/CMakeLists.txt | 2 +- pacman/src/CMakeLists.txt | 1 - pacman/test/CMakeLists.txt | 2 +- pacman/test/tests.cpp | 2 +- pomodoro/conanfile.py | 2 +- pomodoro/lib/CMakeLists.txt | 2 +- pomodoro/lib/Pomodoro.cpp | 4 ---- pomodoro/src/CMakeLists.txt | 1 - pomodoro/test/CMakeLists.txt | 2 +- pomodoro/test/tests.cpp | 2 +- 12 files changed, 9 insertions(+), 15 deletions(-) diff --git a/lcd/test/lcd_tests.cpp b/lcd/test/lcd_tests.cpp index a5c7a8e..07ed904 100644 --- a/lcd/test/lcd_tests.cpp +++ b/lcd/test/lcd_tests.cpp @@ -43,4 +43,4 @@ TEST(LcdTest, Twelve) { int main(int argc, char * argv[]) { testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); -} \ No newline at end of file +} diff --git a/pacman/CMakeLists.txt b/pacman/CMakeLists.txt index 9d5cd13..e98fce5 100644 --- a/pacman/CMakeLists.txt +++ b/pacman/CMakeLists.txt @@ -9,4 +9,4 @@ add_subdirectory(src) add_subdirectory(test) file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/assets/maze.png DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/bin) -file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/assets/sprites32.png DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/bin) \ No newline at end of file +file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/assets/sprites32.png DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/bin) diff --git a/pacman/lib/CMakeLists.txt b/pacman/lib/CMakeLists.txt index df5e39f..76da211 100644 --- a/pacman/lib/CMakeLists.txt +++ b/pacman/lib/CMakeLists.txt @@ -1,3 +1,3 @@ file(GLOB_RECURSE sources CONFIGURE_DEPENDS "*.cpp") add_library(libpacman ${sources}) -target_link_libraries(libpacman sdl2::sdl2 sdl2_image::sdl2_image) \ No newline at end of file +target_link_libraries(libpacman sdl2::sdl2 sdl2_image::sdl2_image) diff --git a/pacman/src/CMakeLists.txt b/pacman/src/CMakeLists.txt index 1f58bff..310e732 100644 --- a/pacman/src/CMakeLists.txt +++ b/pacman/src/CMakeLists.txt @@ -1,4 +1,3 @@ file(GLOB_RECURSE sources CONFIGURE_DEPENDS "*.cpp") add_executable(pacman ${sources}) target_link_libraries(pacman libpacman) - diff --git a/pacman/test/CMakeLists.txt b/pacman/test/CMakeLists.txt index f2e551c..520bbd3 100644 --- a/pacman/test/CMakeLists.txt +++ b/pacman/test/CMakeLists.txt @@ -7,4 +7,4 @@ add_executable(pacman_tests tests.cpp) target_link_libraries(pacman_tests GTest::GTest libpacman) gtest_discover_tests(pacman_tests TEST_PREFIX pacman:) -add_test(NAME monolithic COMMAND pacman_tests) \ No newline at end of file +add_test(NAME monolithic COMMAND pacman_tests) diff --git a/pacman/test/tests.cpp b/pacman/test/tests.cpp index 2dd698b..a0a33a7 100644 --- a/pacman/test/tests.cpp +++ b/pacman/test/tests.cpp @@ -11,4 +11,4 @@ TEST(PacManTest, InitialPosition) { int main(int argc, char* argv[]) { testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); -} \ No newline at end of file +} diff --git a/pomodoro/conanfile.py b/pomodoro/conanfile.py index 6682161..ac73992 100644 --- a/pomodoro/conanfile.py +++ b/pomodoro/conanfile.py @@ -20,4 +20,4 @@ class ConanDependencies(ConanFile): self.copy('*', dst='qml', src='qml') self.copy('*', dst='translations', src='translations') self.copy('*', dst='resources', src='resources') - self.copy("license*", dst="licenses", folder=True, ignore_case=True) \ No newline at end of file + self.copy("license*", dst="licenses", folder=True, ignore_case=True) diff --git a/pomodoro/lib/CMakeLists.txt b/pomodoro/lib/CMakeLists.txt index de0b0cb..3e49039 100644 --- a/pomodoro/lib/CMakeLists.txt +++ b/pomodoro/lib/CMakeLists.txt @@ -1,3 +1,3 @@ file(GLOB_RECURSE sources CONFIGURE_DEPENDS "*.cpp") add_library(libpomodoro ${sources}) -target_link_libraries(libpomodoro Qt5::Core Qt5::Gui Qt5::Widgets) \ No newline at end of file +target_link_libraries(libpomodoro Qt5::Core Qt5::Gui Qt5::Widgets) diff --git a/pomodoro/lib/Pomodoro.cpp b/pomodoro/lib/Pomodoro.cpp index f51a96d..3263f9a 100644 --- a/pomodoro/lib/Pomodoro.cpp +++ b/pomodoro/lib/Pomodoro.cpp @@ -1,5 +1 @@ -// -// Created by patricia on 11/28/2020. -// - #include "Pomodoro.hpp" diff --git a/pomodoro/src/CMakeLists.txt b/pomodoro/src/CMakeLists.txt index b597e71..89af8dc 100644 --- a/pomodoro/src/CMakeLists.txt +++ b/pomodoro/src/CMakeLists.txt @@ -1,4 +1,3 @@ file(GLOB_RECURSE sources CONFIGURE_DEPENDS "*.cpp") add_executable(pomodoro ${sources}) target_link_libraries(pomodoro libpomodoro Qt5::Core Qt5::Gui Qt5::Widgets) - diff --git a/pomodoro/test/CMakeLists.txt b/pomodoro/test/CMakeLists.txt index 22cb7b0..7206351 100644 --- a/pomodoro/test/CMakeLists.txt +++ b/pomodoro/test/CMakeLists.txt @@ -7,4 +7,4 @@ add_executable(pomodoro_tests tests.cpp) target_link_libraries(pomodoro_tests GTest::GTest libpomodoro) gtest_discover_tests(pomodoro_tests TEST_PREFIX pomodoro:) -add_test(NAME monolithic COMMAND pomodoro_tests) \ No newline at end of file +add_test(NAME monolithic COMMAND pomodoro_tests) diff --git a/pomodoro/test/tests.cpp b/pomodoro/test/tests.cpp index 866f76b..7d219f5 100644 --- a/pomodoro/test/tests.cpp +++ b/pomodoro/test/tests.cpp @@ -7,4 +7,4 @@ TEST(PomodoroTest, Init) { int main(int argc, char* argv[]) { testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); -} \ No newline at end of file +}