doxygen support added, mitmproxy plugin migration started
This commit is contained in:
parent
ff5081e8cf
commit
44709f0498
17 changed files with 180 additions and 170 deletions
4
plugins/mitmproxy/CMakeLists.txt
Normal file
4
plugins/mitmproxy/CMakeLists.txt
Normal 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})
|
||||
1
plugins/mitmproxy/mitmproxy.json
Normal file
1
plugins/mitmproxy/mitmproxy.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
1
plugins/mitmproxy/mitmproxy_network.cpp
Normal file
1
plugins/mitmproxy/mitmproxy_network.cpp
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <mitmproxy_network.h>
|
||||
6
plugins/mitmproxy/mitmproxy_network.h
Normal file
6
plugins/mitmproxy/mitmproxy_network.h
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "api.h"
|
||||
#include <QObject>
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue