doxygen support added, mitmproxy plugin migration started

This commit is contained in:
Tim Blume 2021-01-06 22:43:48 +01:00
parent ff5081e8cf
commit 44709f0498
17 changed files with 180 additions and 170 deletions

View file

@ -0,0 +1,4 @@
add_library(mitmproxy_plugin MODULE mitmproxy_network.cpp mitmproxy_network.h)
target_include_directories(mitmproxy_plugin PRIVATE ../../include/)
target_link_libraries(mitmproxy_plugin PRIVATE Qt5::Core)
set_target_properties(mitmproxy_plugin PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${PLUGIN_DIR})

View file

@ -0,0 +1 @@
{}

View file

@ -0,0 +1 @@
#include <mitmproxy_network.h>

View file

@ -0,0 +1,6 @@
#pragma once
#include "api.h"
#include <QObject>