2020-08-19 16:26:26 +00:00
|
|
|
if("${PYTHON_MODULE_EXTENSION}" MATCHES "pypy" OR "${Python_INTERPRETER_ID}" STREQUAL "PyPy")
|
2020-07-30 20:20:10 +00:00
|
|
|
add_custom_target(cpptest) # Dummy target on PyPy. Embedding is not supported.
|
2017-03-23 16:27:32 +00:00
|
|
|
set(_suppress_unused_variable_warning "${DOWNLOAD_CATCH}")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2020-07-24 04:26:49 +00:00
|
|
|
find_package(Catch 2.13.0)
|
2020-08-19 16:26:26 +00:00
|
|
|
|
2017-10-22 15:25:18 +00:00
|
|
|
if(CATCH_FOUND)
|
|
|
|
message(STATUS "Building interpreter tests using Catch v${CATCH_VERSION}")
|
|
|
|
else()
|
2017-03-23 16:27:32 +00:00
|
|
|
message(STATUS "Catch not detected. Interpreter tests will be skipped. Install Catch headers"
|
2020-07-26 17:44:10 +00:00
|
|
|
" manually or use `cmake -DDOWNLOAD_CATCH=ON` to fetch them automatically.")
|
2017-03-23 16:27:32 +00:00
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2020-08-19 16:26:26 +00:00
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
2020-07-30 20:20:10 +00:00
|
|
|
add_executable(test_embed catch.cpp test_interpreter.cpp)
|
2017-03-23 16:27:32 +00:00
|
|
|
pybind11_enable_warnings(test_embed)
|
|
|
|
|
2020-08-19 16:26:26 +00:00
|
|
|
target_link_libraries(test_embed PRIVATE pybind11::embed Catch2::Catch2 Threads::Threads)
|
2017-06-20 21:50:51 +00:00
|
|
|
|
2020-08-19 17:11:57 +00:00
|
|
|
if(NOT CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_CURRENT_BINARY_DIR)
|
|
|
|
file(COPY test_interpreter.py DESTINATION "${CMAKE_CURRENT_BINARY_DIR}")
|
|
|
|
endif()
|
|
|
|
|
2020-07-30 20:20:10 +00:00
|
|
|
add_custom_target(
|
|
|
|
cpptest
|
|
|
|
COMMAND "$<TARGET_FILE:test_embed>"
|
2020-08-19 17:11:57 +00:00
|
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
2018-01-11 23:46:10 +00:00
|
|
|
|
|
|
|
pybind11_add_module(external_module THIN_LTO external_module.cpp)
|
2020-07-30 20:20:10 +00:00
|
|
|
set_target_properties(external_module PROPERTIES LIBRARY_OUTPUT_DIRECTORY
|
2020-08-19 17:11:57 +00:00
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}")
|
2020-07-22 14:23:16 +00:00
|
|
|
foreach(config ${CMAKE_CONFIGURATION_TYPES})
|
|
|
|
string(TOUPPER ${config} config)
|
2020-07-30 20:20:10 +00:00
|
|
|
set_target_properties(external_module PROPERTIES LIBRARY_OUTPUT_DIRECTORY_${config}
|
2020-08-19 17:11:57 +00:00
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}")
|
2020-07-22 14:23:16 +00:00
|
|
|
endforeach()
|
2018-01-11 23:46:10 +00:00
|
|
|
add_dependencies(cpptest external_module)
|
|
|
|
|
2017-03-23 16:27:32 +00:00
|
|
|
add_dependencies(check cpptest)
|