summaryrefslogtreecommitdiff
path: root/test/unit
diff options
context:
space:
mode:
authorDimitri John Ledkov <xnox@ubuntu.com>2019-12-03 18:24:04 +0000
committerJohn Wiegley <johnw@newartisans.com>2019-12-05 15:06:44 +0100
commit6d4cd58cd4b1b2f3906889009da7b71931645e93 (patch)
tree79060a11823f51b24eb5a6c56696f8aec26e0efd /test/unit
parent571c8c59715656c317e1c352ea5012171583ce05 (diff)
downloadfork-ledger-6d4cd58cd4b1b2f3906889009da7b71931645e93.tar.gz
fork-ledger-6d4cd58cd4b1b2f3906889009da7b71931645e93.tar.bz2
fork-ledger-6d4cd58cd4b1b2f3906889009da7b71931645e93.zip
Modernize CMake using backported FindPython module.
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unit/CMakeLists.txt b/test/unit/CMakeLists.txt
index 3611b00a..1bd5e4b3 100644
--- a/test/unit/CMakeLists.txt
+++ b/test/unit/CMakeLists.txt
@@ -9,15 +9,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})
+ if (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 t_value.cc)
set_source_files_properties(t_amount.cc t_value.cc PROPERTIES COMPILE_FLAGS "-Wno-unused-comparison")
- if (CMAKE_SYSTEM_NAME STREQUAL Darwin AND HAVE_BOOST_PYTHON)
- target_link_libraries(MathTests ${PYTHON_LIBRARIES})
+ if (HAVE_BOOST_PYTHON)
+ target_link_libraries(MathTests ${Python_LIBRARIES})
endif()
add_ledger_test(MathTests)
endif()