README.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. Doxygen documentation can be found at: http://tdistler.com/iqa
  2. BUILD:
  3. All build artifacts end up in build/<configuration>, where <configuration> is
  4. 'debug' or 'release'.
  5. Windows:
  6. - Open iqa.sln, select 'Debug' or 'Release', and build. The output is a
  7. static library 'iqa.lib'.
  8. - To run the tests under the debugger, first right-click the 'test' project,
  9. select Properties -> Configuration Properties -> Debugging and set
  10. 'Working Directory' to '$(OutDir)'. Then start the application.
  11. Linux:
  12. - Change directories into the root of the IQA branch you want to build.
  13. - Type `make` for a debug build, or `make RELEASE=1` for a release build.
  14. The output is a static library 'libiqa.a'.
  15. - Type `make test` (or `make test RELEASE=1`) to build the unit tests.
  16. - Type `make clean` (or `make clean RELEASE=1`) to delete all build
  17. artifacts.
  18. - To run the tests, `cd` to the build/<configuration> directory and type
  19. `./test`.
  20. USE:
  21. - Include 'iqa.h' in your source file.
  22. - Call iqa_* methods.
  23. - Link against the IQA library.
  24. HELP & SUPPORT:
  25. Further help can be found at: https://sourceforge.net/projects/iqa/support