README 789 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * ALGO : PROJ. : Volume(Demo)
  3. * RESEARCH : File : README
  4. * : Date : 20100531.0725UTC
  5. * : Email : mail@algoresearch.net
  6. */
  7. # Project structure:
  8. .
  9. ├── README
  10. ├── CMakeLists.txt
  11. ├── bin/
  12. ├── build/
  13. ├── include/
  14. │   ├── main.h
  15. │   ├── observer.h
  16. │   ├── space.h
  17. │   ├── transform.h
  18. │   └── x.h
  19. └── src/
  20. ├── main.c
  21. ├── observer.c
  22. ├── space.c
  23. ├── transform.c
  24. └── x.c
  25. # How to compile:
  26. At the project root directory, execute following commands:
  27. cd bulid
  28. cmake ..
  29. make
  30. # How to run:
  31. If compiled correctly, the executable file(s) will be generated in
  32. the "./bin/" of the project root directory.
  33. EOF.