CMakeLists.txt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. cmake_minimum_required(VERSION 3.1)
  2. project(TestPython2Embedded C)
  3. include(CTest)
  4. find_package(Python2 REQUIRED COMPONENTS Development.Embed)
  5. if (NOT Python2_FOUND)
  6. message (FATAL_ERROR "Fail to found Python 2")
  7. endif()
  8. if (Python2_Development_FOUND)
  9. message (FATAL_ERROR "Python 2, COMPONENT 'Development' unexpectedly found")
  10. endif()
  11. if (Python2_Development.Module_FOUND)
  12. message (FATAL_ERROR "Python 2, COMPONENT 'Development.Module' unexpectedly found")
  13. endif()
  14. if (NOT Python2_Development.Embed_FOUND)
  15. message (FATAL_ERROR "Python 2, COMPONENT 'Development.Embed' not found")
  16. endif()
  17. if(TARGET Python2::Module)
  18. message(SEND_ERROR "Python2::Module unexpectedly found")
  19. endif()
  20. if(NOT TARGET Python2::Python)
  21. message(SEND_ERROR "Python2::Python not found")
  22. endif()
  23. Python2_add_library (display_time2 SHARED ../display_time.c)
  24. set_property (TARGET display_time2 PROPERTY WINDOWS_EXPORT_ALL_SYMBOLS ON)
  25. target_compile_definitions (display_time2 PRIVATE PYTHON2)
  26. add_executable (main2 ../main.c)
  27. target_link_libraries (main2 PRIVATE display_time2)
  28. if (WIN32 OR CYGWIN OR MSYS OR MINGW)
  29. list (JOIN Python2_RUNTIME_LIBRARY_DIRS "$<SEMICOLON>" RUNTIME_DIRS)
  30. add_test (NAME Python2.Embedded COMMAND "${CMAKE_COMMAND}" -E env "PATH=${RUNTIME_DIRS}" $<TARGET_FILE:main2>)
  31. else()
  32. add_test (NAME Python2.Embedded COMMAND main2)
  33. endif()
  34. set_property (TEST Python2.Embedded PROPERTY PASS_REGULAR_EXPRESSION "Today is")