more updates, mostly plugin target types

This commit is contained in:
Green Sky 2024-05-28 10:14:13 +02:00
parent 50556cc0cb
commit a023e5f46e
No known key found for this signature in database
11 changed files with 16 additions and 17 deletions

View File

@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
submodules: recursive submodules: recursive
@ -63,7 +63,7 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
submodules: recursive submodules: recursive
@ -126,7 +126,7 @@ jobs:
contents: write contents: write
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
submodules: recursive submodules: recursive

View File

@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
submodules: recursive submodules: recursive
@ -39,7 +39,7 @@ jobs:
runs-on: macos-latest runs-on: macos-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
submodules: recursive submodules: recursive
@ -62,7 +62,7 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
submodules: recursive submodules: recursive

@ -1 +1 @@
Subproject commit ea63233452bf80718b857d937606b6f5686e371a Subproject commit b21acd4c9976c06809de933e7840e6b67e70d67d

@ -1 +1 @@
Subproject commit 2594286fdc30750fabd5ca5321307e7ff3ff0de1 Subproject commit 568c532cdb8bebede8ec81cd9b7754b5ce841ce6

@ -1 +1 @@
Subproject commit fe28aaeda0b7c2b9512235fbdc17000894214c24 Subproject commit 0379c8a5abcf6eef12c4a32bb962e9a0bb94afb7

@ -1 +1 @@
Subproject commit 85e2b633dba4741f6624b99bb118e1ab730b6677 Subproject commit f38da08334d1dfb3cdd9fb5f795d6083d808c12a

@ -1 +1 @@
Subproject commit 589a947449cf7374f475a256ef03cc64e2010ef0 Subproject commit d333927ec35d22eee44a7a691c00edd58c518d16

@ -1 +1 @@
Subproject commit 58bbdc4a41ed98021dc74a2030aa42fbf86b3e8a Subproject commit 30a22fd933f32de9336fd619ac237914606e6539

@ -1 +1 @@
Subproject commit 466efc5da3a404b45e58babd239e5d58e83c294e Subproject commit 88cfc8638ea850f9f1c3ed9232292684f49302df

2
external/totato vendored

@ -1 +1 @@
Subproject commit 446a4939f5f6badee98dcff6529d8ea48368116c Subproject commit bb9da772bc9679c4b0a01cea2da5873074b1782d

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.9 FATAL_ERROR) cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
add_library(plugin_ngcft1 SHARED add_library(plugin_ngcft1 MODULE
./plugin_ngcft1.cpp ./plugin_ngcft1.cpp
) )
set_target_properties(plugin_ngcft1 PROPERTIES 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 ./plugin_transfer_auto_accept.cpp
./transfer_auto_accept.hpp ./transfer_auto_accept.hpp
./transfer_auto_accept.cpp ./transfer_auto_accept.cpp
) )
set_target_properties(plugin_transfer_auto_accept PROPERTIES set_target_properties(plugin_transfer_auto_accept PROPERTIES
C_VISIBILITY_PRESET hidden C_VISIBILITY_PRESET hidden
POSITION_INDEPENDENT_CODE ON
) )
target_compile_definitions(plugin_transfer_auto_accept PUBLIC ENTT_API_IMPORT) target_compile_definitions(plugin_transfer_auto_accept PUBLIC ENTT_API_IMPORT)