You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmonero/tests/CMakeLists.txt

47 lines
999 B

6 years ago
macro(add_om_test _TEST_NAME)
add_executable(${_TEST_NAME}_tests
"${_TEST_NAME}_tests.cpp"
5 years ago
JsonTx.cpp)
6 years ago
target_link_libraries(${_TEST_NAME}_tests
5 years ago
PRIVATE
gtest gtest_main
gmock gmock_main
myxmr)
6 years ago
add_test(NAME ${_TEST_NAME}_tests COMMAND ${_TEST_NAME}_tests)
endmacro()
5 years ago
resource_dir("res")
6 years ago
add_om_test(mysql)
add_om_test(microcore)
6 years ago
add_om_test(bcstatus)
add_om_test(txsearch)
######################################
########## CODE COVERAGE #############
######################################
#include(CodeCoverage)
#APPEND_COVERAGE_COMPILER_FLAGS()
#set(COVERAGE_LCOV_EXCLUDES
#'*/ext/*' '*boost/*' '*c++/*'
#'*/monero/*' '*googletest/*' '*googlemock/*'
#'*restbed/*' '*/mysql++/*' '*tests/*'
#'*src/xmregcore/*')
#SETUP_TARGET_FOR_COVERAGE_LCOV(
#NAME coverage
#EXECUTABLE mysql_tests
#microcore_tests
#bcstatus
#txsearch)