All Questions
6 questions
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 ...
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 ...
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 : ...
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 ...
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 ...
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_ ...