both firmware and test are build and run using Makefile

This commit is contained in:
Attila Body 2019-12-13 14:43:40 +01:00
parent 6b628e9412
commit fd24d10fb7
346 changed files with 141567 additions and 28 deletions

View file

@ -0,0 +1,10 @@
libdir=../gtest_i386/lib
includedir=../gtest_i386/include
Name: gmock
Description: GoogleMock (without main() function)
Version: 1.10.0
URL: https://github.com/google/googletest
Requires: gtest
Libs: -L${libdir} -lgmock -lpthread
Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1

View file

@ -0,0 +1,10 @@
libdir=../gtest_i386/lib
includedir=../gtest_i386/include
Name: gmock_main
Description: GoogleMock (with main() function)
Version: 1.10.0
URL: https://github.com/google/googletest
Requires: gmock
Libs: -L${libdir} -lgmock_main -lpthread
Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1

View file

@ -0,0 +1,9 @@
libdir=../gtest_i386/lib
includedir=../gtest_i386/include
Name: gtest
Description: GoogleTest (without main() function)
Version: 1.10.0
URL: https://github.com/google/googletest
Libs: -L${libdir} -lgtest -lpthread
Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1

View file

@ -0,0 +1,10 @@
libdir=../gtest_i386/lib
includedir=../gtest_i386/include
Name: gtest_main
Description: GoogleTest (with main() function)
Version: 1.10.0
URL: https://github.com/google/googletest
Requires: gtest
Libs: -L${libdir} -lgtest_main -lpthread
Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1