Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - GoverNator

#1
Installation help / Re: TGUI Builder via vcpkg
08 February 2026, 22:38:23
Whoa
Thank's a lot, it did helped!

For anyone else coming to the topic with same question: specifying the "tool" feature would enable gui builder.

{
  "dependencies": [
    "sfml",
    {
      "name": "tgui",
      "default-features": true,
      "features": ["tool"]
    },
    "vcpkg-cmake"
  ]
}

It would be built if your project contains the release configuration, and .exe with all the dependencies and resource files would be put into \vcpkg_installed\x64-windows\tools\tgui
#2
Installation help / TGUI Builder via vcpkg
08 February 2026, 20:44:30
Hello

I've gave vcpkg a try, since it's not very productive to install everything manually all the time. Getting TGUI, SFML, compile and run was ok for "hello world".

I wonder is it possible to get also the Gui builder with the vcpkg? I've tried smth like the example below, but nothing worked. Also I found no related keywords by searching TGUI package files, downloaded from vcpkg.

#vcpkg_cmake_configure(
#    OPTIONS
#        -DTGUI_BUILD_GUI_BUILDER:BOOL=ON
#)
set(VCPKG_CMAKE_CONFIGURE_OPTIONS -DTGUI_BUILD_GUI_BUILDER:BOOL=ON)