diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2015-07-28 20:54:44 +0200 |
---|---|---|
committer | Alexis Hildebrandt <afh@surryhill.net> | 2015-07-28 20:54:44 +0200 |
commit | f5d59159f1aac6e5c24476d085de3f9033c52edb (patch) | |
tree | 69ebd0b9b01d967395cbc489dbf810cc3c5d3665 /test/unit | |
parent | f0f4d7e66f9adf5610aaf6d65c160621a79c10da (diff) | |
download | fork-ledger-f5d59159f1aac6e5c24476d085de3f9033c52edb.tar.gz fork-ledger-f5d59159f1aac6e5c24476d085de3f9033c52edb.tar.bz2 fork-ledger-f5d59159f1aac6e5c24476d085de3f9033c52edb.zip |
[tests] Fix Util and Math tests on Mac OS X
by explicitly linking the testing targets against Python
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/unit/CMakeLists.txt b/test/unit/CMakeLists.txt index 23bb0ea4..654bda5f 100644 --- a/test/unit/CMakeLists.txt +++ b/test/unit/CMakeLists.txt @@ -7,9 +7,15 @@ 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) |