diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index b7d7b2f..013ee34 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive @@ -63,7 +63,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive @@ -126,7 +126,7 @@ jobs: contents: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc6cc25..bb35256 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive @@ -39,7 +39,7 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive @@ -62,7 +62,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive diff --git a/external/solanaceae_bridge b/external/solanaceae_bridge index ea63233..b21acd4 160000 --- a/external/solanaceae_bridge +++ b/external/solanaceae_bridge @@ -1 +1 @@ -Subproject commit ea63233452bf80718b857d937606b6f5686e371a +Subproject commit b21acd4c9976c06809de933e7840e6b67e70d67d diff --git a/external/solanaceae_crdtnotes b/external/solanaceae_crdtnotes index 2594286..568c532 160000 --- a/external/solanaceae_crdtnotes +++ b/external/solanaceae_crdtnotes @@ -1 +1 @@ -Subproject commit 2594286fdc30750fabd5ca5321307e7ff3ff0de1 +Subproject commit 568c532cdb8bebede8ec81cd9b7754b5ce841ce6 diff --git a/external/solanaceae_ircclient b/external/solanaceae_ircclient index fe28aae..0379c8a 160000 --- a/external/solanaceae_ircclient +++ b/external/solanaceae_ircclient @@ -1 +1 @@ -Subproject commit fe28aaeda0b7c2b9512235fbdc17000894214c24 +Subproject commit 0379c8a5abcf6eef12c4a32bb962e9a0bb94afb7 diff --git a/external/solanaceae_llama-cpp-web b/external/solanaceae_llama-cpp-web index 85e2b63..f38da08 160000 --- a/external/solanaceae_llama-cpp-web +++ b/external/solanaceae_llama-cpp-web @@ -1 +1 @@ -Subproject commit 85e2b633dba4741f6624b99bb118e1ab730b6677 +Subproject commit f38da08334d1dfb3cdd9fb5f795d6083d808c12a diff --git a/external/solanaceae_message_fragment_store b/external/solanaceae_message_fragment_store index 589a947..d333927 160000 --- a/external/solanaceae_message_fragment_store +++ b/external/solanaceae_message_fragment_store @@ -1 +1 @@ -Subproject commit 589a947449cf7374f475a256ef03cc64e2010ef0 +Subproject commit d333927ec35d22eee44a7a691c00edd58c518d16 diff --git a/external/solanaceae_tox_upnp b/external/solanaceae_tox_upnp index 58bbdc4..30a22fd 160000 --- a/external/solanaceae_tox_upnp +++ b/external/solanaceae_tox_upnp @@ -1 +1 @@ -Subproject commit 58bbdc4a41ed98021dc74a2030aa42fbf86b3e8a +Subproject commit 30a22fd933f32de9336fd619ac237914606e6539 diff --git a/external/solanaceae_zox b/external/solanaceae_zox index 466efc5..88cfc86 160000 --- a/external/solanaceae_zox +++ b/external/solanaceae_zox @@ -1 +1 @@ -Subproject commit 466efc5da3a404b45e58babd239e5d58e83c294e +Subproject commit 88cfc8638ea850f9f1c3ed9232292684f49302df diff --git a/external/totato b/external/totato index 446a493..bb9da77 160000 --- a/external/totato +++ b/external/totato @@ -1 +1 @@ -Subproject commit 446a4939f5f6badee98dcff6529d8ea48368116c +Subproject commit bb9da772bc9679c4b0a01cea2da5873074b1782d diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index ea1010c..fb78a57 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.9 FATAL_ERROR) -add_library(plugin_ngcft1 SHARED +add_library(plugin_ngcft1 MODULE ./plugin_ngcft1.cpp ) set_target_properties(plugin_ngcft1 PROPERTIES @@ -19,14 +19,13 @@ target_link_libraries(plugin_ngcft1 PUBLIC ######################################## -add_library(plugin_transfer_auto_accept SHARED +add_library(plugin_transfer_auto_accept MODULE ./plugin_transfer_auto_accept.cpp ./transfer_auto_accept.hpp ./transfer_auto_accept.cpp ) set_target_properties(plugin_transfer_auto_accept PROPERTIES C_VISIBILITY_PRESET hidden - POSITION_INDEPENDENT_CODE ON ) target_compile_definitions(plugin_transfer_auto_accept PUBLIC ENTT_API_IMPORT)