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

Author Topic: VS 2013 - missing sfml-window-d-2.dll sfml-system-d-2.dll files  (Read 11530 times)

0 Members and 1 Guest are viewing this topic.

brevenaugh

  • Newbie
  • *
  • Posts: 6
    • View Profile
VS 2013 - missing sfml-window-d-2.dll sfml-system-d-2.dll files
« on: January 09, 2014, 07:07:51 pm »
new to this.  finally got programs to compile and link properly.  however, they won't run because the 2 above files are not on my computer.  I re-downloaded the source, re-cmaked, and re-built the files.  the 2 files are still not there.  here is the output from my build of sfml:

1>------ Build started: Project: ZERO_CHECK, Configuration: Debug Win32 ------
2>------ Build started: Project: sfml-system, Configuration: Debug Win32 ------
3>------ Build started: Project: sfml-main, Configuration: Debug Win32 ------
3>  SFML_Main.cpp
2>  Clock.cpp
2>  Err.cpp
2>  Lock.cpp
2>  Mutex.cpp
2>  Sleep.cpp
2>  String.cpp
2>  Thread.cpp
2>  ThreadLocal.cpp
2>  Time.cpp
2>  ClockImpl.cpp
3>  sfml-main.vcxproj -> C:\sfml-build\lib\Debug\sfml-main-d.lib
2>  MutexImpl.cpp
2>  SleepImpl.cpp
2>  ThreadImpl.cpp
2>  ThreadLocalImpl.cpp
2>  Generating Code...
2>  LINK : C:\sfml-build\lib\Debug\sfml-system-d-2.dll not found or not built by the last incremental link; performing full link
2>     Creating library C:/sfml-build/lib/Debug/sfml-system-d.lib and object C:/sfml-build/lib/Debug/sfml-system-d.exp
2>  sfml-system.vcxproj -> C:\sfml-build\lib\Debug\sfml-system-d-2.dll
4>------ Build started: Project: sfml-window, Configuration: Debug Win32 ------
5>------ Build started: Project: sfml-audio, Configuration: Debug Win32 ------
5>  ALCheck.cpp
5>  AudioDevice.cpp
5>  Listener.cpp
5>  Music.cpp
5>  Sound.cpp
5>  SoundBuffer.cpp
5>  SoundBufferRecorder.cpp
5>  SoundFile.cpp
5>  SoundRecorder.cpp
5>  SoundSource.cpp
5>  SoundStream.cpp
5>  Generating Code...
5>     Creating library C:/sfml-build/lib/Debug/sfml-audio-d.lib and object C:/sfml-build/lib/Debug/sfml-audio-d.exp
5>  sfml-audio.vcxproj -> C:\sfml-build\lib\Debug\sfml-audio-d-2.dll
4>  Context.cpp
4>  GlContext.cpp
4>  GlResource.cpp
4>  Joystick.cpp
4>  JoystickManager.cpp
4>  Keyboard.cpp
4>  Mouse.cpp
4>  VideoMode.cpp
4>  InputImpl.cpp
4>  JoystickImpl.cpp
4>  VideoModeImpl.cpp
4>  WglContext.cpp
4>  WindowImplWin32.cpp
6>------ Build started: Project: sfml-network, Configuration: Debug Win32 ------
6>  Ftp.cpp
4>  Window.cpp
6>  Http.cpp
6>  IpAddress.cpp
4>  WindowImpl.cpp
6>  Packet.cpp
4>  Generating Code...
6>  Socket.cpp
6>  SocketSelector.cpp
6>  TcpListener.cpp
6>  TcpSocket.cpp
6>  UdpSocket.cpp
6>  SocketImpl.cpp
6>  Generating Code...
4>  LINK : C:\sfml-build\lib\Debug\sfml-window-d-2.dll not found or not built by the last incremental link; performing full link
4>     Creating library C:/sfml-build/lib/Debug/sfml-window-d.lib and object C:/sfml-build/lib/Debug/sfml-window-d.exp
4>  sfml-window.vcxproj -> C:\sfml-build\lib\Debug\sfml-window-d-2.dll
6>     Creating library C:/sfml-build/lib/Debug/sfml-network-d.lib and object C:/sfml-build/lib/Debug/sfml-network-d.exp
6>  sfml-network.vcxproj -> C:\sfml-build\lib\Debug\sfml-network-d-2.dll
7>------ Build started: Project: sfml-graphics, Configuration: Debug Win32 ------
7>  CircleShape.cpp
7>  Color.cpp
7>  ConvexShape.cpp
7>  Font.cpp
7>  GLCheck.cpp
7>  Image.cpp
7>  ImageLoader.cpp
7>  RectangleShape.cpp
7>  RenderStates.cpp
7>  RenderTarget.cpp
7>  RenderTexture.cpp
7>  RenderTextureImpl.cpp
7>  RenderTextureImplDefault.cpp
7>  RenderTextureImplFBO.cpp
7>  RenderWindow.cpp
7>  Shader.cpp
7>  Shape.cpp
7>  Sprite.cpp
7>  Text.cpp
7>  Texture.cpp
7>  Generating Code...
7>  Compiling...
7>  TextureSaver.cpp
7>  Transform.cpp
7>  Transformable.cpp
7>  Vertex.cpp
7>  VertexArray.cpp
7>  View.cpp
7>  Generating Code...
7>     Creating library C:/sfml-build/lib/Debug/sfml-graphics-d.lib and object C:/sfml-build/lib/Debug/sfml-graphics-d.exp
7>  sfml-graphics.vcxproj -> C:\sfml-build\lib\Debug\sfml-graphics-d-2.dll
8>------ Build started: Project: ALL_BUILD, Configuration: Debug Win32 ------
8>  Build all projects
9>------ Skipped Build: Project: INSTALL, Configuration: Debug Win32 ------
9>Project not selected to build for this solution configuration
========== Build: 8 succeeded, 0 failed, 0 up-to-date, 1 skipped ==========
« Last Edit: January 09, 2014, 07:18:44 pm by brevenaugh »

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10916
    • View Profile
    • development blog
    • Email
AW: VS 2013 - missing sfml-window-d-2.dll sfml-system-d-2.dll files
« Reply #1 on: January 09, 2014, 07:32:08 pm »
The DLLs get build but since you don't run the INSTALL build, they won't get installed to the path specified via CMake. They can be found however in the build directory of SFML. ;)
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

brevenaugh

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: VS 2013 - missing sfml-window-d-2.dll sfml-system-d-2.dll files
« Reply #2 on: January 09, 2014, 07:39:24 pm »
i ran a search of the entire computer to see if they could be hiding somewhere.  not there.  i do find the dll's for audio, graphics and network however.

amir ramezani

  • Jr. Member
  • **
  • Posts: 81
  • i'm a programmer who can't see well
    • View Profile
    • download useful software!
    • Email
Re: VS 2013 - missing sfml-window-d-2.dll sfml-system-d-2.dll files
« Reply #3 on: January 09, 2014, 08:50:17 pm »
the system and graphics are inside the other DLLS
if you can't see well, you can't test your applications and operating system well
my game engine:
allegro game creator
my operating system:
AmirOS

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10916
    • View Profile
    • development blog
    • Email
Re: VS 2013 - missing sfml-window-d-2.dll sfml-system-d-2.dll files
« Reply #4 on: January 10, 2014, 09:16:47 am »
the system and graphics are inside the other DLLS
What? No they are not "inside" the other DLLs, they should be next to the other ones, but not inside. ;)

i ran a search of the entire computer to see if they could be hiding somewhere.  not there.  i do find the dll's for audio, graphics and network however.
Well that's odd. You might have deleted them by accident somehow then, because the build log says, that they were created:
...
2>  sfml-system.vcxproj -> C:\sfml-build\lib\Debug\sfml-system-d-2.dll
...
5>  sfml-audio.vcxproj -> C:\sfml-build\lib\Debug\sfml-audio-d-2.dll
...
4>  sfml-window.vcxproj -> C:\sfml-build\lib\Debug\sfml-window-d-2.dll
...
6>  sfml-network.vcxproj -> C:\sfml-build\lib\Debug\sfml-network-d-2.dll
...
7>  sfml-graphics.vcxproj -> C:\sfml-build\lib\Debug\sfml-graphics-d-2.dll
...
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

brevenaugh

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: VS 2013 - missing sfml-window-d-2.dll sfml-system-d-2.dll files
« Reply #5 on: January 10, 2014, 03:52:31 pm »
Thank you eXpL0it3r.  If my files were built but were not on the computer, what happened to them?  I got the bright idea to check my Norton Security log and found that Norton considered them a security threat and was removing them as they were built.  It appeared as though they never existed.  Thanks.

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10916
    • View Profile
    • development blog
    • Email
Re: VS 2013 - missing sfml-window-d-2.dll sfml-system-d-2.dll files
« Reply #6 on: January 10, 2014, 03:56:34 pm »
It appeared as though they never existed.
I suggest you do the same to Norton and get something better. ::)
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

 

anything