fff923d2f4
The extractBits(), signExtend(), and writeBits() functions of the anonymous namespace in Input/FGHIDEventInput.cxx have been shifted out of the namespace and are now exposed via the header. This is needed as <Input/FGHIDEventInput.cxx> cannot be imported within the CppUnit infrastructure, as it is already built into the run_test_suite binary.
26 lines
385 B
CMake
26 lines
385 B
CMake
# Add each unit test category.
|
|
foreach( unit_test_category
|
|
Add-ons
|
|
general
|
|
FDM
|
|
Input
|
|
Main
|
|
Navaids
|
|
Scripting
|
|
)
|
|
|
|
add_subdirectory(${unit_test_category})
|
|
|
|
endforeach( unit_test_category )
|
|
|
|
|
|
set(TESTSUITE_SOURCES
|
|
${TESTSUITE_SOURCES}
|
|
PARENT_SCOPE
|
|
)
|
|
|
|
|
|
set(TESTSUITE_HEADERS
|
|
${TESTSUITE_HEADERS}
|
|
PARENT_SCOPE
|
|
)
|