Build a single library for the test harness (#646)

The common library stopped being useful when we got rid of the
last compatibility suite.

Signed-off-by: Kevin Petit <kevin.petit@arm.com>
This commit is contained in:
Kévin Petit
2020-03-04 12:38:33 +00:00
committed by GitHub
parent 4c59bfa32f
commit 4ccc214abb

View File

@@ -1,16 +1,11 @@
set(HARNESS_COMMON_SOURCES set(HARNESS_SOURCES
harness/threadTesting.cpp harness/threadTesting.cpp
harness/typeWrappers.cpp harness/typeWrappers.cpp
harness/mt19937.cpp harness/mt19937.cpp
harness/conversions.cpp harness/conversions.cpp
harness/rounding_mode.cpp harness/rounding_mode.cpp
harness/msvc9.c harness/msvc9.c
)
add_library(harness-common STATIC ${HARNESS_COMMON_SOURCES})
set(HARNESS_SOURCES
harness/crc32.c harness/crc32.c
harness/errorHelpers.cpp harness/errorHelpers.cpp
harness/genericThread.cpp harness/genericThread.cpp
@@ -26,4 +21,3 @@ set(HARNESS_SOURCES
add_library(harness STATIC ${HARNESS_SOURCES}) add_library(harness STATIC ${HARNESS_SOURCES})
target_link_libraries(harness harness-common)