Move to VCPKG.

* Minor cleaning of CMakeLists.txt. Fix C++ warnings and Qt deprecation.
* Avoid using Python from virtual environment.
This commit is contained in:
Mikaël Capelle
2024-08-09 21:10:50 +02:00
parent e11d5ec00d
commit 7cca7018b3
45 changed files with 534 additions and 229 deletions
+2 -2
View File
@@ -7,7 +7,7 @@
#include <pybind11/eval.h>
#include <pybind11/pybind11.h>
#include "log.h"
#include <uibase/log.h>
namespace py = pybind11;
@@ -123,7 +123,7 @@ namespace mo2::python {
void configure_python_logging(py::module_ mobase)
{
// most of this is dealing with actual Python objects since it is not
// possible to derive from logging.Handler in C++ using Boost.Python,
// possible to derive from logging.Handler in C++ using pybind11,
// and since a lot of this would require extra register only for this.
// see also