Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
0 answers
170 views

During cppunit make install error for task install-m4DATA appeared

I've been building freedesktop cppunit with mingw https://www.freedesktop.org/wiki/Software/cppunit/ I've made some fixes to source files and makefiles and been able to successfully execute ...
Vyacheslav's user avatar
  • 3,244
3 votes
1 answer
9k views

Makefiles: Change working directory for make check

I have a C++ project that employs unit testing via CppUnit and has the following directory structure: . |-- bin | `-- tests |-- src | `-- include `-- test `-- include In the top-level ...
Ivo Filot's user avatar
  • 224
0 votes
1 answer
107 views

trouble with makefile, no references

I've got two classes : EtatTrafic and EtatTraficTest. This is my makefile : #Makefile CXX = g++ LDLIBS = -lcppunit # a modifier en fonction des cas OBJS = EtatTrafic.o EtatTraficTest.o all : ...
giovedy's user avatar
  • 123
1 vote
1 answer
3k views

makefile for cppunit

this is my makefile : #Makefile CC=g++ CFLAGS=-lcppunit OBJS=Money.o MoneyTest.o all : $(OBJS) $(CC) $(OBJS) -o TestUnitaire #création des objets Money.o: Money.cpp Money.hpp $(CC) -c ...
giovedy's user avatar
  • 123
2 votes
1 answer
2k views

C++ How do i run makefile output

C++ How do i run makefile output Below is my MakeFile, I want to ask how do i run my unitTest.cpp, as because when i MakeFile with NetBean, using the MakeFile below, main.exe is actually the main.cpp ...
Baoky A New Programer's user avatar
10 votes
6 answers
18k views

macro `AM_PATH_CPPUNIT' not found in library

I am trying to build libtorrent on shared hosting. So built CPPUnit(1.12.1) with --prefix=$HOME. After that my $HOME/lib and $HOME/include contains CPPUnit libraries and headers. The I exported LD_ ...
Pablo's user avatar
  • 29.5k