Welcome, Guest. Please login or register. Did you miss your activation email?

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.


Messages - jordangh67

Pages: [1]
1
General / How to use SFML with x64
« on: March 16, 2021, 09:37:22 pm »
I'm trying to use a database with my project but in order to do that, I must set the Active solution platform to X64 in the configuration manager. However, whenever I set it to x64 instead of x86 receive several errors saying the project cannot open the source file "SFML/Graphics.hpp".

Would anyway know what I have to do to my settings to allow for compatible with x64. Any help is appreciated.

https://imgur.com/8Lu1X0Y

2
General discussions / Android controller in SFMl
« on: October 13, 2019, 10:01:35 pm »
Currently working on a school project and my team and I were thinking of implementing an android phone as a controller. Does anyone know if this is possible in visual studio and SFML?

Any help is appreciated

3
General discussions / Error with program
« on: September 03, 2019, 07:13:36 pm »
I have followed a video on how to setup sfml however the program I have written doesn't seem to run and i get a linker error.

#include <iostream>

#include <SFML/Graphics.hpp>

int main()
{
   sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
   

   return 0;
}

Error:
   
LNK2019   unresolved external symbol "__declspec(dllimport) public: __thiscall sf::String::~String(void)" (__imp_??1String@sf@@QAE@XZ) referenced in function _main   Timber   C:\Users\jorda\OneDrive - Limerick Institute Of Technology\Self projects\SFML tutorials\Slfm Tut 2\Timber\Timber.obj   1   

 

Pages: [1]