-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Luke Gehorsam
authored
Jun 28, 2023
1 parent
7a26831
commit cb18156
Showing
13 changed files
with
65 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
set(VCPKG_TARGET_ARCHITECTURE arm) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
|
||
if (${PORT} MATCHES "nakama-sdk") | ||
set(VCPKG_LIBRARY_LINKAGE dynamic) | ||
else() | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
endif() | ||
|
||
set(VCPKG_CMAKE_SYSTEM_NAME Android) | ||
set(VCPKG_BUILD_TYPE release) | ||
set(ANDROID_ARM_NEON ON) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
|
||
if (${PORT} MATCHES "nakama-sdk") | ||
set(VCPKG_LIBRARY_LINKAGE dynamic) | ||
else() | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
endif() | ||
|
||
set(VCPKG_CMAKE_SYSTEM_NAME Linux) | ||
set(VCPKG_BUILD_TYPE release) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,16 @@ | ||
{ | ||
"name": "nakama-sdk-cocos2d-x", | ||
"version": "2.6.0", | ||
"version": "2.7.0", | ||
"dependencies": [ | ||
{ | ||
"name": "nakama-sdk", | ||
"version>=": "2.7.1", | ||
"platform": "ios | osx | linux", | ||
"features": ["libhttpclient-http", "wslay", "curl-io"] | ||
}, | ||
{ | ||
"name": "nakama-sdk", | ||
"version>=": "2.7.1", | ||
"platform": "windows", | ||
"features": ["libhttpclient-ws", "libhttpclient-http"] | ||
}, | ||
{ | ||
"name": "nakama-sdk", | ||
"version>=": "2.7.1", | ||
"platform": "android", | ||
"version>=": "2.8.0#6", | ||
"features": ["curl-io", "curl-http", "wslay", "logs"] | ||
} | ||
], | ||
"overrides": [ | ||
], | ||
"default-features": [], | ||
"builtin-baseline": "62d01b70df227850b728f5050418b917ad6d2b32" | ||
"builtin-baseline": "62d01b70df227850b728f5050418b917ad6d2b32", | ||
"overrides": [ | ||
{ "name": "curl", "version": "8.0.1" } | ||
] | ||
} |