Advertisement
Guest User

Untitled

a guest
May 4th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. main
  2. SFML (subtree synced with the official git repo)
  3. src
  4. <various modules>
  5. General (here lies the binary)
  6.  
  7. sfml‑system
  8. sfml‑window
  9. sfml‑network
  10. sfml‑graphics
  11. sfml‑audio
  12. sfml‑main
  13.  
  14. add_executable(main ${main_SRCS})
  15. target_link_libraries (main
  16. sfml‑system
  17. sfml‑window
  18. sfml‑network
  19. sfml‑graphics
  20. sfml‑audio
  21. sfml‑main
  22. # Other stuff here
  23. )
  24.  
  25. /usr/lib/gcc/x86_64-pc-linux-gnu/4.9.2/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lsfml‑system
  26. /usr/lib/gcc/x86_64-pc-linux-gnu/4.9.2/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lsfml‑window
  27. /usr/lib/gcc/x86_64-pc-linux-gnu/4.9.2/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lsfml‑network
  28. /usr/lib/gcc/x86_64-pc-linux-gnu/4.9.2/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lsfml‑graphics
  29. /usr/lib/gcc/x86_64-pc-linux-gnu/4.9.2/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lsfml‑audio
  30. /usr/lib/gcc/x86_64-pc-linux-gnu/4.9.2/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lsfml‑main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement