[go: up one dir, main page]

Menu

Tree [8c9bd9] 1.1.0 / tests / src /
 History

HTTPS access


File Date Author Commit
 Makefile.am 2015-09-16 Christian Ferrari Christian Ferrari [051b4a] Java test cases completed
 Makefile.in 2015-10-16 Christian Ferrari Christian Ferrari [d9ce9d] Intermediate commit
 README 2014-10-21 Christian Ferrari Christian Ferrari [44e3a0] First library use case is growing...
 case0000.c 2015-01-13 Christian Ferrari Christian Ferrari [c07aab] Temporary commit, broken build (resource set se...
 case0001.c 2015-01-13 Christian Ferrari Christian Ferrari [c07aab] Temporary commit, broken build (resource set se...
 case0002.c 2015-05-13 Christian Ferrari Christian Ferrari [b8c2e9] Improved PHP and Python test cases
 case0003.c 2015-08-26 Christian Ferrari Christian Ferrari [224b81] Added return codes to API setters
 case1000.cc 2015-01-07 Christian Ferrari Christian Ferrari [558764] Implementing PHP examples...
 case1001.cc 2015-01-13 Christian Ferrari Christian Ferrari [c07aab] Temporary commit, broken build (resource set se...
 case1002.cc 2015-09-16 Christian Ferrari Christian Ferrari [051b4a] Java test cases completed
 case2000.php.in 2015-01-22 Christian Ferrari Christian Ferrari [a368e0] Refining package to release 0.9.2
 case2001.php.in 2015-01-22 Christian Ferrari Christian Ferrari [a368e0] Refining package to release 0.9.2
 case2002.php.in 2015-05-20 Christian Ferrari Christian Ferrari [e3fe02] PHP and Python test cases are now completed
 case3000.py 2015-04-20 Christian Ferrari Christian Ferrari [280ba5] Added more Python test cases
 case3001.py 2015-04-20 Christian Ferrari Christian Ferrari [280ba5] Added more Python test cases
 case3002.py 2015-05-22 Christian Ferrari Christian Ferrari [90593e] Added Python example programs
 case4000.java 2015-09-06 Christian Ferrari Christian Ferrari [1cbb13] All Java methods was developed
 case4001.java 2015-09-13 Christian Ferrari Christian Ferrari [f64af2] Implemented case tests case4001.java
 case4002.java 2015-09-16 Christian Ferrari Christian Ferrari [051b4a] Java test cases completed
 case4003.java 2015-09-16 Christian Ferrari Christian Ferrari [051b4a] Java test cases completed

Read Me

The C source files contained in this directory are used as test cases for
libflom (flom library) usage and can be used as programming examples.
Makefile automatically compiles them; if you want to compile one of these
examples for your own purpose, you shall use a command like the following one
(the example referes to "case0000.c" source program):

gcc -I /usr/local/include/ $(pkg-config --cflags glib-2.0) \
	-L /usr/local/lib/ -l flom $(pkg-config --libs glib-2.0 gthread-2.0) \
	-o case0000 case0000.c

Note:
0. you must install flom (sudo make install) before starting to build your own
   program using libflom
1. /usr/local/include is the default installation path of libflom headers
   (change it according to your configuration if you changed the default)
2. /usr/local/lib is the default installation path of libflom library
   (change it according to your configuration if you changed the default)
3. glib-2.0 and gthread-2.0 compile and link flags are retrieved using
   pkg-config utility