Files
2022-09-04 21:02:32 +08:00

38 lines
789 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* ALGO : PROJ. : Volume(Demo)
* RESEARCH : File : README
* : Date : 20100531.0725UTC
* : Email : mail@algoresearch.net
*/
# Project structure:
.
├── README
├── CMakeLists.txt
├── bin/
├── build/
├── include/
│   ├── main.h
│   ├── observer.h
│   ├── space.h
│   ├── transform.h
│   └── x.h
└── src/
├── main.c
├── observer.c
├── space.c
├── transform.c
└── x.c
# How to compile:
At the project root directory, execute following commands:
cd bulid
cmake ..
make
# How to run:
If compiled correctly, the executable file(s) will be generated in
the "./bin/" of the project root directory.
EOF.