From db5c0ecdf91f08ac08b1df72bcc6c73a40bc0fe7 Mon Sep 17 00:00:00 2001 From: Danila Slesarev Date: Mon, 22 May 2023 16:57:13 +0300 Subject: [PATCH] fix(server): removed unnecessarily tracked file from git --- python_tests/CMakeLists.txt | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 python_tests/CMakeLists.txt diff --git a/python_tests/CMakeLists.txt b/python_tests/CMakeLists.txt deleted file mode 100644 index a0ff604..0000000 --- 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} -) -- GitLab