├── .clang-format ├── .clang-tidy ├── .github └── workflows │ └── ci_tests.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── PrintOS.cmake ├── README.md ├── bin ├── CMakeLists.txt └── main.cpp ├── cmake ├── IncludeExternalLibraries.cmake └── SetCompilerOptions.cmake ├── install.sh ├── lib ├── CMakeLists.txt ├── mylib │ ├── CMakeLists.txt │ ├── MyClass.cpp │ └── MyClass.hpp └── ui │ ├── CMakeLists.txt │ ├── ui_functions.cpp │ └── ui_functions.hpp └── tests ├── CMakeLists.txt ├── main_test.cpp ├── test_functions.cpp ├── test_functions.hpp ├── test_suites ├── ProjectIntegrationTestSuite.cpp └── ProjectIntegrationTestSuite.hpp └── unit_tests.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/ci_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/.github/workflows/ci_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/LICENSE -------------------------------------------------------------------------------- /PrintOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/PrintOS.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/README.md -------------------------------------------------------------------------------- /bin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/bin/CMakeLists.txt -------------------------------------------------------------------------------- /bin/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/bin/main.cpp -------------------------------------------------------------------------------- /cmake/IncludeExternalLibraries.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/cmake/IncludeExternalLibraries.cmake -------------------------------------------------------------------------------- /cmake/SetCompilerOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/cmake/SetCompilerOptions.cmake -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/install.sh -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mylib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/lib/mylib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mylib/MyClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/lib/mylib/MyClass.cpp -------------------------------------------------------------------------------- /lib/mylib/MyClass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/lib/mylib/MyClass.hpp -------------------------------------------------------------------------------- /lib/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/lib/ui/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ui/ui_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/lib/ui/ui_functions.cpp -------------------------------------------------------------------------------- /lib/ui/ui_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/lib/ui/ui_functions.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/main_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/tests/main_test.cpp -------------------------------------------------------------------------------- /tests/test_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/tests/test_functions.cpp -------------------------------------------------------------------------------- /tests/test_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/tests/test_functions.hpp -------------------------------------------------------------------------------- /tests/test_suites/ProjectIntegrationTestSuite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/tests/test_suites/ProjectIntegrationTestSuite.cpp -------------------------------------------------------------------------------- /tests/test_suites/ProjectIntegrationTestSuite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/tests/test_suites/ProjectIntegrationTestSuite.hpp -------------------------------------------------------------------------------- /tests/unit_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bialger/cpp_tests/HEAD/tests/unit_tests.cpp --------------------------------------------------------------------------------