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

Author Topic: How do i make an installer for my sfml 2.0 game?  (Read 2746 times)

0 Members and 1 Guest are viewing this topic.

Assassinbeast

  • Jr. Member
  • **
  • Posts: 62
    • View Profile
    • Email
How do i make an installer for my sfml 2.0 game?
« on: November 05, 2012, 11:10:16 pm »
Good evening   ;D

I just finished my game and i want to show it to my friend.
How do i make and installer for it?

I know how to do it with allegro. i used "Advanced Installer" and i just had to include some redistributable files and some allegro dll. files.

But what should i include with sfml?


eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10819
    • View Profile
    • development blog
    • Email
Re: How do i make an installer for my sfml 2.0 game?
« Reply #1 on: November 06, 2012, 01:19:01 am »
I just finished my game and i want to show it to my friend.
How do i make and installer for it?
I personally like a simple (7)zip archive for smaller games, which don't need an installation. ;)

i used "Advanced Installer" and i just had to include some redistributable files and some allegro dll. files.
But what should i include with sfml?
The same way but instead of including the Allegro dlls you include the SFML dlls. ;)
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

FRex

  • Hero Member
  • *****
  • Posts: 1845
  • Back to C++ gamedev with SFML in May 2023
    • View Profile
    • Email
Re: How do i make an installer for my sfml 2.0 game?
« Reply #2 on: November 06, 2012, 01:28:31 am »
Note that visual studio has some sort of installer creator gypsy wizard but I'm not sure if it's in express or how does it work at all. ;D
Back to C++ gamedev with SFML in May 2023

Sui

  • Jr. Member
  • **
  • Posts: 67
    • View Profile
    • http://www.suisoft.co.uk/
Re: How do i make an installer for my sfml 2.0 game?
« Reply #3 on: November 06, 2012, 09:16:20 am »
Inno Setup is very good and also free:

http://www.jrsoftware.org/isinfo.php

You just have to set up a simple script. The documentation is easy to follow and there are example scripts to use as a basis.

I have used it for both of my PC games (one free, one shareware) with no problems.

Highly recommended.
Gary Marples, Developer of games and other stuff.
www.suisoft.co.uk/games/BlogTwitter

Assassinbeast

  • Jr. Member
  • **
  • Posts: 62
    • View Profile
    • Email
Re: How do i make an installer for my sfml 2.0 game?
« Reply #4 on: November 06, 2012, 08:55:27 pm »
Thanks  :)

firefly2442

  • Newbie
  • *
  • Posts: 23
    • View Profile
Re: How do i make an installer for my sfml 2.0 game?
« Reply #5 on: November 07, 2012, 04:30:43 am »
NSIS also is useful.

http://nsis.sourceforge.net/

 

anything