#sonar qube testing
+project( odu-l2 )
+cmake_minimum_required( VERSION 2.8.12.2)
+#No unit test present in this framework TBD in further releases.
+enable_testing()
+add_test(NAME drive_unit_tests COMMAND bash ../test/unit_test.sh)
# # Other apsects of tool chain set here
# # These should be made available appropriately to the builds
ifeq ($(MACHINE),BIT64)
+ifeq ($(COVERAGE),1)
+CC =gcc -m64 --coverage
+else
CC =gcc -m64
+endif
CC_STRIP =strip --strip-all
CC_LINKER =gcc -m64
CCPP =g++ -m64
--- /dev/null
+cd odu;make clean_odu MACHINE=BIT64 MODE=TDD;make odu MACHINE=BIT64 MODE=TDD COVERAGE=1