aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2023-09-24 23:15:49 +0200
committerJan200101 <sentrycraft123@gmail.com>2023-09-24 23:15:49 +0200
commitbaeb89675e8d06266ea1fbfe287c2b9f839b3ce8 (patch)
tree8ac9ce9c927d831604f9c470f30d6c42adcef383 /src
parentb92f3d1d6ad49881eb31ac911a8ad368743af108 (diff)
downloadSouthRPC-baeb89675e8d06266ea1fbfe287c2b9f839b3ce8.tar.gz
SouthRPC-baeb89675e8d06266ea1fbfe287c2b9f839b3ce8.zip
rebrand, fix comments, add thunderstore structure creation
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 674d664..6e2ad25 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -5,8 +5,8 @@ find_package(RapidJSON REQUIRED)
plugin_manifest(SouthRPC name "SouthRPC")
plugin_manifest(SouthRPC displayname "SouthRPC")
-plugin_manifest(SouthRPC description "Implements JSON-RPC Bridge for Northstar over TCP/IP")
-plugin_manifest(SouthRPC run_on_server OFF)
+plugin_manifest(SouthRPC description "Implements JSON-RPC 2.0 Bridge for Northstar over HTTP 1.1")
+plugin_manifest(SouthRPC run_on_server ON) # Insecure but sure
plugin_manifest(SouthRPC run_on_client ON)
add_library(SouthRPC SHARED
@@ -23,3 +23,8 @@ target_link_libraries(SouthRPC ws2_32)
target_precompile_headers(SouthRPC PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/ns_plugin.h)
plugin_link(SouthRPC)
+plugin_thunderstore(SouthRPC
+ "https://github.com/Jan200101/SouthRPC"
+ "${PROJECT_SOURCE_DIR}/README.md"
+ "${PROJECT_SOURCE_DIR}/icon.png"
+)