Whitespace cleanup
This commit is contained in:
parent
fd6e33711b
commit
f384d4aa08
12 changed files with 9 additions and 15 deletions
|
@ -43,4 +43,4 @@ TEST(LcdTest, Twelve) {
|
|||
int main(int argc, char * argv[]) {
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/assets/sprites32.png DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/bin)
|
||||
|
|
|
@ -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)
|
||||
target_link_libraries(libpacman sdl2::sdl2 sdl2_image::sdl2_image)
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
file(GLOB_RECURSE sources CONFIGURE_DEPENDS "*.cpp")
|
||||
add_executable(pacman ${sources})
|
||||
target_link_libraries(pacman libpacman)
|
||||
|
||||
|
|
|
@ -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)
|
||||
add_test(NAME monolithic COMMAND pacman_tests)
|
||||
|
|
|
@ -11,4 +11,4 @@ TEST(PacManTest, InitialPosition) {
|
|||
int main(int argc, char* argv[]) {
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
self.copy("license*", dst="licenses", folder=True, ignore_case=True)
|
||||
|
|
|
@ -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)
|
||||
target_link_libraries(libpomodoro Qt5::Core Qt5::Gui Qt5::Widgets)
|
||||
|
|
|
@ -1,5 +1 @@
|
|||
//
|
||||
// Created by patricia on 11/28/2020.
|
||||
//
|
||||
|
||||
#include "Pomodoro.hpp"
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
add_test(NAME monolithic COMMAND pomodoro_tests)
|
||||
|
|
|
@ -7,4 +7,4 @@ TEST(PomodoroTest, Init) {
|
|||
int main(int argc, char* argv[]) {
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue