mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
e4f81af337
Skip Android, iOS, and Framework builds simply because I can't get them to work and don't want that holding up getting the rest of the install tests merged. Skip the Static DRM install test because there's a bug in the install that needs to be fixed.
38 lines
884 B
C++
38 lines
884 B
C++
#include <SFML/Audio.hpp>
|
|
#include <SFML/Graphics.hpp>
|
|
#include <SFML/Network.hpp>
|
|
|
|
// Instantiate some types from each module to test for linker issues. This program is not meant be ran.
|
|
int main()
|
|
{
|
|
// Audio
|
|
sf::InputSoundFile input_sound_file;
|
|
sf::Listener listener;
|
|
sf::Music music;
|
|
sf::Sound sound;
|
|
|
|
// Graphics
|
|
sf::Color color;
|
|
sf::Font font;
|
|
sf::RenderWindow render_window;
|
|
sf::Sprite sprite;
|
|
sf::Vertex vertex;
|
|
|
|
// Network
|
|
sf::Ftp ftp;
|
|
sf::Http http;
|
|
sf::Packet packet;
|
|
sf::UdpSocket udp_socket;
|
|
|
|
// System
|
|
sf::Angle angle;
|
|
sf::FileInputStream file_input_stream;
|
|
sf::String string;
|
|
sf::Time time;
|
|
|
|
// Window
|
|
sf::Context context;
|
|
sf::VideoMode video_mode;
|
|
sf::Window window;
|
|
}
|