ledger/test/unit/CMakeLists.txt
Alexis Hildebrandt f5d59159f1 [tests] Fix Util and Math tests on Mac OS X
by explicitly linking the testing targets against Python
2015-07-28 20:54:44 +02:00

23 lines
808 B
CMake

macro(add_ledger_test _name)
target_link_libraries(${_name} libledger)
add_test(Ledger${_name} ${PROJECT_BINARY_DIR}/${_name})
endmacro(add_ledger_test _name)
include_directories(${PROJECT_SOURCE_DIR}/src)
if (BUILD_LIBRARY)
add_executable(UtilTests t_times.cc)
if (CMAKE_SYSTEM_NAME STREQUAL Darwin AND HAVE_BOOST_PYTHON)
target_link_libraries(UtilTests ${PYTHON_LIBRARIES})
endif()
add_ledger_test(UtilTests)
add_executable(MathTests t_amount.cc t_commodity.cc t_balance.cc t_expr.cc)
if (CMAKE_SYSTEM_NAME STREQUAL Darwin AND HAVE_BOOST_PYTHON)
target_link_libraries(MathTests ${PYTHON_LIBRARIES})
endif()
add_ledger_test(MathTests)
set_target_properties(check PROPERTIES DEPENDS LedgerUtilTests)
set_target_properties(check PROPERTIES DEPENDS LedgerMathTests)
endif()