I have to develop a unit test project using cppunit for the purpose of unit testing of an existing C++ project. I have downloaded unittest framework and built it on a Linux server using commands
./configure
make
make check
There are some example projects in the directory 'examples'. These also also built when I built the whole framework.
I have created a new project using the cppunit framework. I want to build this project using make utility as like other example projects. But the make files for other example projects were created using automake utility when I ran the ./configure command. Please let me know how to build my project.
Thanks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have to develop a unit test project using cppunit for the purpose of unit testing of an existing C++ project. I have downloaded unittest framework and built it on a Linux server using commands
./configure
make
make check
There are some example projects in the directory 'examples'. These also also built when I built the whole framework.
I have created a new project using the cppunit framework. I want to build this project using make utility as like other example projects. But the make files for other example projects were created using automake utility when I ran the ./configure command. Please let me know how to build my project.
Thanks.