Merge pull request #1014 from LAK132/master
Replace deprecated method of finding Python 3
This commit is contained in:
commit
5c93d71c2a
@ -173,10 +173,10 @@ if (BUILD_GUI)
|
||||
set(CMAKE_ENABLE_EXPORTS ON)
|
||||
endif()
|
||||
|
||||
find_package(PythonInterp 3.5 REQUIRED)
|
||||
find_package(Python3 3.5 REQUIRED COMPONENTS Interpreter)
|
||||
if (BUILD_PYTHON)
|
||||
# TODO: sensible minimum Python version
|
||||
find_package(PythonLibs 3.5 REQUIRED)
|
||||
find_package(Python3 3.5 REQUIRED COMPONENTS Development)
|
||||
else()
|
||||
add_definitions("-DNO_PYTHON")
|
||||
endif()
|
||||
@ -221,7 +221,7 @@ if (NOT DEFINED PYBIND11_INCLUDE_DIR)
|
||||
set(PYBIND11_INCLUDE_DIR "3rdparty/pybind11/include")
|
||||
endif()
|
||||
|
||||
include_directories(common/kernel/ common/place/ common/route/ json/ frontend/ 3rdparty/json11/ ${PYBIND11_INCLUDE_DIR} ${Boost_INCLUDE_DIRS} ${PYTHON_INCLUDE_DIRS})
|
||||
include_directories(common/kernel/ common/place/ common/route/ json/ frontend/ 3rdparty/json11/ ${PYBIND11_INCLUDE_DIR} ${Boost_INCLUDE_DIRS} ${Python3_INCLUDE_DIRS})
|
||||
|
||||
if(BUILD_HEAP)
|
||||
find_package (Eigen3 REQUIRED NO_MODULE)
|
||||
@ -339,7 +339,7 @@ foreach (family ${ARCH})
|
||||
target_link_libraries(${target} LINK_PUBLIC gui_${family} ${GUI_LIBRARY_FILES_${ufamily}})
|
||||
endif()
|
||||
if (BUILD_PYTHON)
|
||||
target_link_libraries(${target} LINK_PUBLIC ${PYTHON_LIBRARIES})
|
||||
target_link_libraries(${target} LINK_PUBLIC ${Python3_LIBRARIES})
|
||||
if (STATIC_BUILD)
|
||||
target_link_libraries(${target} LINK_PUBLIC ${CMAKE_THREAD_LIBS_INIT} ${CMAKE_DL_LIBS} ${ZLIB_LIBRARIES} ${EXPAT_LIBRARIES})
|
||||
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
|
Loading…
Reference in New Issue
Block a user