README 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. Fresh is a library extending the Qt library by adding new classes/widgets.
  2. It's developped by Filipe Azevedo (Nox P@sNox, pasnox@gmail.com)
  3. The library had python bindings created by Andrei KOPATS (hlamer, hlamer@tut.by), see python-bindings branch.
  4. The python bindings are discontinued it's why they have been moved to the python-bindings branch, feel free to take over.
  5. Licensed in LGPL v3
  6. ===================
  7. Home Page: https://github.com/pasnox/fresh
  8. Issues Tracker: https://github.com/pasnox/fresh/issues
  9. Building library and examples:
  10. ==============================
  11. HINT: Depending your plat-form, replace qmake by qmake-qt4
  12. Dependencies:
  13. * C++ compiler (ubuntu packages build-essential / g++)
  14. * Qt4 library v4.6+, headers and tools. (ubuntu packages qt4-qmake, libqt4-dev)
  15. * Mac OS X: CoreFoundation
  16. On Ubuntu install all with command:
  17. sudo apt-get install make build-essential g++ libqt4-dev qt4-qmake
  18. Building library:
  19. qmake -r ./fresh.pro && make
  20. Installing the built library (after having built the library):
  21. make install
  22. Building library and an example:
  23. qmake -r ./fresh-subdirs.pro && make
  24. ./bin/examples
  25. NOTE: On some platforms replace qmake by qmake-qt4, replace make by nmake or mingw32-make. Installing the library may require root privileges.