UnixPaths.cmake 643 B

1234567891011121314151617181920212223242526272829303132
  1. SET(CMAKE_SYSTEM_INCLUDE_PATH ${CMAKE_SYSTEM_INCLUDE_PATH}
  2. # Standard
  3. /include /usr/include /usr/local/include
  4. # Windows API on Cygwin
  5. /usr/include/w32api
  6. # X11
  7. /usr/X11R6/include /usr/include/X11
  8. # Other
  9. /opt/local/include /usr/pkg/include
  10. )
  11. SET(CMAKE_SYSTEM_LIBRARY_PATH ${CMAKE_SYSTEM_LIBRARY_PATH}
  12. # Standard
  13. /lib /usr/lib /usr/local/lib
  14. # Windows API on Cygwin
  15. /usr/lib/w32api
  16. # X11
  17. /usr/X11R6/lib /usr/lib/X11
  18. # Other
  19. /opt/local/lib /usr/pkg/lib
  20. /opt/csw/lib /opt/lib
  21. )
  22. SET(CMAKE_SYSTEM_PROGRAM_PATH ${CMAKE_SYSTEM_PROGRAM_PATH}
  23. /bin /usr/bin /usr/local/bin /usr/pkg/bin /sbin
  24. )