Ok, i'm not sure what's going on here.
I went from VS2013, TGUI 0.6.9 and SFML 2.3.2 to VS2015, TGUI 0.7.1 and SFML 2.4.0 between 2 different computers with very different configurations.
Anyhow, there is a really odd issue that prevents me from compiling my project:
sf::RenderWindow window(sf::VideoMode(960, 600), "RexKeyPad");
tgui::Gui gui(window);
if (gui.setGlobalFont("data/DroidSansMono.ttf") == false)
return 1;
Severity Code Description Project File Line Suppression State
Error (active) class "tgui::Gui" has no member "setGlobalFont" RexKeyPad c:\DEV\RexKeyPad\RexKeyPad\Main.cpp 107
Any TGUI code beyond the IF above fails with various errors which wouldn't normally exist.
I have triple checked all sorts of path, include, lib etc configurations but can't find the cause. Any help would be appreciated