diff options
Diffstat (limited to 'tests/projects/package/components/src/main.cpp')
| -rw-r--r-- | tests/projects/package/components/src/main.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/projects/package/components/src/main.cpp b/tests/projects/package/components/src/main.cpp new file mode 100644 index 000000000..bf0ad1553 --- /dev/null +++ b/tests/projects/package/components/src/main.cpp @@ -0,0 +1,14 @@ +#include <SFML/Graphics.hpp> +#include <SFML/Network.hpp> + +extern "C" { +void network(); +void graphics(); +} + +int main(int argc, char** argv) { + network(); + graphics(); + return 0; +} + |
