diff options
| author | Roland Reichwein <mail@reichwein.it> | 2023-01-09 11:29:22 +0100 | 
|---|---|---|
| committer | Roland Reichwein <mail@reichwein.it> | 2023-01-09 11:29:22 +0100 | 
| commit | 24b3afa684e57176f5068fd5896679ae0fa047ad (patch) | |
| tree | c9f6d03fadcb762ae0163f14f52462338249e62a /tests/Makefile | |
| parent | e7dd0b98770ee0c88c1ea976d9e9a6d3979782f7 (diff) | |
Add process.h: is_running()
Diffstat (limited to 'tests/Makefile')
| -rw-r--r-- | tests/Makefile | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/tests/Makefile b/tests/Makefile index 6ae6f12..b95c91a 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -16,6 +16,7 @@ UNITS=\  	file.cpp \  	mime.cpp \  	os.cpp \ +	process.cpp \  	stringhelper.cpp \  	tempfile.cpp \  	url.cpp @@ -26,6 +27,7 @@ UNITTESTS=\  	test-file.cpp \  	test-mime.cpp \  	test-os.cpp \ +	test-process.cpp \  	test-stringhelper.cpp \  	test-tempfile.cpp \  	test-url.cpp @@ -69,6 +71,9 @@ mime.o: ../mime.cpp  os.o: ../os.cpp  	$(CXX) $(CXXFLAGS) -o $@ -c $< +process.o: ../process.cpp +	$(CXX) $(CXXFLAGS) -o $@ -c $< +  stringhelper.o: ../stringhelper.cpp  	$(CXX) $(CXXFLAGS) -o $@ -c $< | 
