diff --git a/python_tests/CMakeLists.txt b/python_tests/CMakeLists.txt deleted file mode 100644 index a0ff604fd813b1eb6192df7b6b64b729e8239a61..0000000000000000000000000000000000000000 --- a/python_tests/CMakeLists.txt +++ /dev/null @@ -1,19 +0,0 @@ -add_executable(python_loading main.cpp) - -find_package(Boost COMPONENTS filesystem system date_time python REQUIRED) -message("Include dirs of boost: " ${Boost_INCLUDE_DIRS}) -message("Libs of boost: " ${Boost_LIBRARIES}) - -find_package(PythonLibs REQUIRED) -message("Include dirs of Python: " ${PYTHON_INCLUDE_DIRS}) -message("Libs of Python: " ${PYTHON_LIBRARIES}) - -include_directories( - ${Boost_INCLUDE_DIRS} - ${PYTHON_INCLUDE_DIRS} -) - -target_link_libraries(python_loading - ${Boost_LIBRARIES} - ${PYTHON_LIBRARIES} -)