Advertisement
WeltEnSTurm

Untitled

Sep 12th, 2012
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #!/usr/bin/pibuilder
  2.  
  3. compiler g++ -std=gnu++11 -O3 -Wall -Werror -c -fmessage-length=0
  4. linker g++
  5.  
  6. buildpath build
  7. output bin/engine
  8. run output
  9.  
  10. source src
  11.  
  12. smartlib ../ws
  13.  
  14. windows {
  15. include ../../lib/include
  16. library {
  17. lib OpenGL32
  18. lib GLU32
  19. lib GDI32
  20. path ../../lib/lib
  21. lib GLEW32
  22. lib freetype
  23. }
  24. }
  25.  
  26. linux {
  27. library {
  28. lib GL
  29. lib GLU
  30. lib GLEW
  31. lib X11
  32. lib freetype
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement