Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions ports/tgui/portfile.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
if(NOT "sdl2" IN_LIST FEATURES AND NOT "sfml" IN_LIST FEATURES)
message(FATAL_ERROR "At least one of the backend features must be selected: sdl2 sfml")

set(BACKEND_LST "sfml" "sdl2" "sdl3" "raylib")
foreach(BACKEND IN LISTS BACKEND_LST)
if(BACKEND IN_LIST FEATURES)
set(HAS_BACKEND ON)
endif()
endforeach()
if(NOT HAS_BACKEND)
message(FATAL_ERROR "At least one of the backend features must be selected: ${BACKEND_LST}")
endif()

if(VCPKG_TARGET_IS_ANDROID)
Expand Down
1 change: 1 addition & 0 deletions ports/tgui/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "tgui",
"version": "1.8.0",
"port-version": 1,
"description": "TGUI is an easy to use, cross-platform, C++ GUI for SFML.",
"homepage": "https://tgui.eu",
"license": "Zlib",
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -9130,7 +9130,7 @@
},
"tgui": {
"baseline": "1.8.0",
"port-version": 0
"port-version": 1
},
"think-cell-range": {
"baseline": "2023.1",
Expand Down
5 changes: 5 additions & 0 deletions versions/t-/tgui.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "c6390a7307153b8fc26cc25e685d298f65424fec",
"version": "1.8.0",
"port-version": 1
},
{
"git-tree": "5cfc9daf9c0f559a1cf3e3e73dd3d0e67c12cd50",
"version": "1.8.0",
Expand Down